github.com/GoogleContainerTools/skaffold@v1.39.18/examples/helm-deployment-dependencies/skaffold-helm/charts/subchart/values.yaml (about)

     1  # Default values for skaffold-helm.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  nameOverride: "subchart"
     5  replicaCount: 1
     6  image: nginx:stable
     7  # This is the helm convention on declaring images
     8  # image:
     9  #   repository: nginx
    10  #   tag: stable
    11  #   pullPolicy: IfNotPresent
    12  service:
    13    name: nginx
    14    type: ClusterIP
    15    externalPort: 80
    16    internalPort: 80
    17  ingress:
    18    enabled: false
    19    # Used to create an Ingress record.
    20    hosts:
    21      - chart-example.local
    22    annotations:
    23      # kubernetes.io/ingress.class: nginx
    24      # kubernetes.io/tls-acme: "true"
    25    tls:
    26      # Secrets must be manually created in the namespace.
    27      # - secretName: chart-example-tls
    28      #   hosts:
    29      #     - chart-example.local
    30  resources: {}
    31    # We usually recommend not to specify default resources and to leave this as a conscious
    32    # choice for the user. This also increases chances charts run on environments with little
    33    # resources, such as Minikube. If you do want to specify resources, uncomment the following
    34    # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
    35    # limits:
    36    #  cpu: 100m
    37    #  memory: 128Mi
    38    # requests:
    39    #  cpu: 100m
    40    #  memory: 128Mi