default_values.yaml 669 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # Default values for ix-chart.
  2. image:
  3. repository: debian
  4. pullPolicy: IfNotPresent
  5. # Overrides the image tag whose default is the chart appVersion.
  6. tag: "latest"
  7. # Restart / Update policy
  8. updateStrategy: RollingUpdate
  9. # Container CMD / entrypoint
  10. containerCommand: []
  11. containerArgs: []
  12. containerEnvironmentVariables: []
  13. # Network related configuration
  14. externalInterfaces: []
  15. portForwardingList: []
  16. hostNetwork: false
  17. dnsPolicy: Default
  18. dnsConfig:
  19. nameservers: []
  20. searches: []
  21. # Storage related configuration
  22. hostPathVolumes: []
  23. volumes: []
  24. # Probes
  25. # Liveness Probe
  26. livenessProbe: null
  27. # Workload type
  28. workloadType: "Deployment"
  29. gpuConfiguration: {}