test_values.yaml 822 B

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