test-values.yaml 871 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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
  38. # CI Enabled
  39. ci: true