test_values.yaml 850 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Default values for ix-chart.
  2. image:
  3. repository: nginx
  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. jobRestartPolicy: OnFailure
  10. # Container CMD / entrypoint
  11. containerCommand: []
  12. containerArgs: []
  13. containerEnvironmentVariables: []
  14. # Network related configuration
  15. externalInterfaces: []
  16. portForwardingList: [{"containerPort": 80, "nodePort": 32000}]
  17. hostPortsList: []
  18. hostNetwork: false
  19. dnsPolicy: Default
  20. dnsConfig:
  21. nameservers: []
  22. searches: []
  23. # Storage related configuration
  24. hostPathVolumes: []
  25. volumes: []
  26. emptyDirVolumes: []
  27. # Probes
  28. # Liveness Probe
  29. livenessProbe: null
  30. # Workload type
  31. workloadType: "Deployment"
  32. gpuConfiguration: {}
  33. securityContext:
  34. privileged: false
  35. capabilities: []
  36. tty: true
  37. stdin: true