values.yaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # Default values for wordpress-chart.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. replicaCount: 1
  5. image:
  6. repository: docker-registry:32000
  7. pullPolicy: IfNotPresent
  8. # Overrides the image tag whose default is the chart appVersion.
  9. tag: ""
  10. imagePullSecrets: [reg-cred-secret]
  11. nameOverride: ""
  12. fullnameOverride: ""
  13. serviceAccount:
  14. # Specifies whether a service account should be created
  15. create: true
  16. # Annotations to add to the service account
  17. annotations: {}
  18. # The name of the service account to use.
  19. # If not set and create is true, a name is generated using the fullname template
  20. name: ""
  21. podAnnotations: {}
  22. podSecurityContext: {}
  23. # fsGroup: 2000
  24. securityContext: {}
  25. # capabilities:
  26. # drop:
  27. # - ALL
  28. # readOnlyRootFilesystem: true
  29. # runAsNonRoot: true
  30. # runAsUser: 1000
  31. service:
  32. type: NodePort
  33. port: 80
  34. ingress:
  35. enabled: false
  36. className: ""
  37. annotations: {}
  38. # kubernetes.io/ingress.class: nginx
  39. # kubernetes.io/tls-acme: "true"
  40. hosts:
  41. - host: chart-example.local
  42. paths:
  43. - path: /
  44. pathType: ImplementationSpecific
  45. tls: []
  46. # - secretName: chart-example-tls
  47. # hosts:
  48. # - chart-example.local
  49. resources: {}
  50. # We usually recommend not to specify default resources and to leave this as a conscious
  51. # choice for the user. This also increases chances charts run on environments with little
  52. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  53. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  54. # limits:
  55. # cpu: 100m
  56. # memory: 128Mi
  57. # requests:
  58. # cpu: 100m
  59. # memory: 128Mi
  60. autoscaling:
  61. enabled: false
  62. minReplicas: 1
  63. maxReplicas: 100
  64. targetCPUUtilizationPercentage: 80
  65. # targetMemoryUtilizationPercentage: 80
  66. nodeSelector: {}
  67. tolerations: []
  68. affinity: {}