values.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Default values for helm-guestbook.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. replicaCount: 1
  5. image:
  6. repository: gcr.io/heptio-images/ks-guestbook-demo
  7. tag: 0.1
  8. pullPolicy: IfNotPresent
  9. containerPort: 80
  10. service:
  11. type: ClusterIP
  12. port: 80
  13. ingress:
  14. enabled: false
  15. annotations: {}
  16. # kubernetes.io/ingress.class: nginx
  17. # kubernetes.io/tls-acme: "true"
  18. path: /
  19. hosts:
  20. - chart-example.local
  21. tls: []
  22. # - secretName: chart-example-tls
  23. # hosts:
  24. # - chart-example.local
  25. resources: {}
  26. # We usually recommend not to specify default resources and to leave this as a conscious
  27. # choice for the user. This also increases chances charts run on environments with little
  28. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  29. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  30. # limits:
  31. # cpu: 100m
  32. # memory: 128Mi
  33. # requests:
  34. # cpu: 100m
  35. # memory: 128Mi
  36. nodeSelector: {}
  37. tolerations: []
  38. affinity: {}