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