|
| 1 | +# Default values for containers. |
| 2 | +# This is a YAML-formatted file. |
| 3 | +# Declare variables to be passed into your templates. |
| 4 | + |
| 5 | +replicaCount: 1 |
| 6 | + |
| 7 | +image: |
| 8 | + repository: nginx |
| 9 | + pullPolicy: IfNotPresent |
| 10 | + # Overrides the image tag whose default is the chart appVersion. |
| 11 | + tag: "" |
| 12 | + |
| 13 | +imagePullSecrets: [] |
| 14 | +nameOverride: "" |
| 15 | +fullnameOverride: "" |
| 16 | + |
| 17 | +serviceAccount: |
| 18 | + # Specifies whether a service account should be created |
| 19 | + create: true |
| 20 | + # Automatically mount a ServiceAccount's API credentials? |
| 21 | + automount: true |
| 22 | + # Annotations to add to the service account |
| 23 | + annotations: {} |
| 24 | + # The name of the service account to use. |
| 25 | + # If not set and create is true, a name is generated using the fullname template |
| 26 | + name: "" |
| 27 | + |
| 28 | +podAnnotations: {} |
| 29 | +podLabels: {} |
| 30 | + |
| 31 | +podSecurityContext: {} |
| 32 | + # fsGroup: 2000 |
| 33 | + |
| 34 | +securityContext: {} |
| 35 | + # capabilities: |
| 36 | + # drop: |
| 37 | + # - ALL |
| 38 | + # readOnlyRootFilesystem: true |
| 39 | + # runAsNonRoot: true |
| 40 | + # runAsUser: 1000 |
| 41 | + |
| 42 | +service: |
| 43 | + type: ClusterIP |
| 44 | + port: 80 |
| 45 | + |
| 46 | +ingress: |
| 47 | + enabled: false |
| 48 | + className: "" |
| 49 | + annotations: {} |
| 50 | + # kubernetes.io/ingress.class: nginx |
| 51 | + # kubernetes.io/tls-acme: "true" |
| 52 | + hosts: |
| 53 | + - host: chart-example.local |
| 54 | + paths: |
| 55 | + - path: / |
| 56 | + pathType: ImplementationSpecific |
| 57 | + tls: [] |
| 58 | + # - secretName: chart-example-tls |
| 59 | + # hosts: |
| 60 | + # - chart-example.local |
| 61 | + |
| 62 | +resources: {} |
| 63 | + # We usually recommend not to specify default resources and to leave this as a conscious |
| 64 | + # choice for the user. This also increases chances charts run on environments with little |
| 65 | + # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 66 | + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 67 | + # limits: |
| 68 | + # cpu: 100m |
| 69 | + # memory: 128Mi |
| 70 | + # requests: |
| 71 | + # cpu: 100m |
| 72 | + # memory: 128Mi |
| 73 | + |
| 74 | +autoscaling: |
| 75 | + enabled: false |
| 76 | + minReplicas: 1 |
| 77 | + maxReplicas: 100 |
| 78 | + targetCPUUtilizationPercentage: 80 |
| 79 | + # targetMemoryUtilizationPercentage: 80 |
| 80 | + |
| 81 | +# Additional volumes on the output Deployment definition. |
| 82 | +volumes: [] |
| 83 | +# - name: foo |
| 84 | +# secret: |
| 85 | +# secretName: mysecret |
| 86 | +# optional: false |
| 87 | + |
| 88 | +# Additional volumeMounts on the output Deployment definition. |
| 89 | +volumeMounts: [] |
| 90 | +# - name: foo |
| 91 | +# mountPath: "/etc/foo" |
| 92 | +# readOnly: true |
| 93 | + |
| 94 | +nodeSelector: {} |
| 95 | + |
| 96 | +tolerations: [] |
| 97 | + |
| 98 | +affinity: {} |
0 commit comments