12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # Default values for ix-chart.
- image:
- repository: nginx
- pullPolicy: IfNotPresent
- # Overrides the image tag whose default is the chart appVersion.
- tag: latest
- # Restart / Update policy
- updateStrategy: RollingUpdate
- jobRestartPolicy: OnFailure
- # Container CMD / entrypoint
- containerCommand: []
- containerArgs: []
- containerEnvironmentVariables: []
- # Network related configuration
- externalInterfaces: []
- portForwardingList: [{"containerPort": 80, "nodePort": 32000}]
- hostPortsList: []
- hostNetwork: false
- dnsPolicy: Default
- dnsConfig:
- nameservers: []
- searches: []
- # Storage related configuration
- hostPathVolumes: []
- volumes: []
- emptyDirVolumes: []
- # Probes
- # Liveness Probe
- livenessProbe: null
- # Workload type
- workloadType: "Deployment"
- gpuConfiguration: {}
- securityContext:
- privileged: false
- capabilities: []
- tty: true
- stdin: true
- # CI Enabled
- ci: true
|