test_values.yaml 746 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. restartPolicy: Always
  9. updateStrategy: RollingUpdate
  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. # Probes
  27. # Liveness Probe
  28. livenessProbe: null
  29. # Workload type
  30. workloadType: "Deployment"
  31. gpuConfiguration: {}