Files
truecharts/charts/library/common-test/ci/codeserver-values.yaml
T
2024-10-19 20:21:36 +02:00

57 lines
1.0 KiB
YAML

service:
main:
enabled: true
primary: true
ports:
main:
enabled: true
primary: true
protocol: http
port: 8080
workload:
main:
enabled: true
primary: true
type: Deployment
podSpec:
containers:
main:
enabled: true
primary: true
args:
- --port
- "8080"
probes:
liveness:
enabled: true
type: http
port: "{{ .Values.service.main.ports.main.port }}"
readiness:
enabled: true
type: http
port: "{{ .Values.service.main.ports.main.port }}"
startup:
enabled: true
type: http
port: "{{ .Values.service.main.ports.main.port }}"
args:
- --port
- "8080"
persistence:
testpvc:
enabled: true
type: pvc
mountPath: /testpvc
addons:
codeserver:
enabled: true
service:
type: LoadBalancer
ports:
codeserver:
nodePort: 30067