github.com/lrills/helm@v2.8.1+incompatible/docs/examples/nginx/values.yaml (about)

     1  # Default values for nginx.
     2  # This is a YAML-formatted file.
     3  # Declare name/value pairs to be passed into your templates.
     4  
     5  replicaCount: 1
     6  restartPolicy: Never
     7  
     8  # Evaluated by the post-install hook
     9  sleepyTime: "10"
    10  
    11  index: >-
    12    <h1>Hello</h1>
    13    <p>This is a test</p>
    14  
    15  image:
    16    repository: nginx
    17    tag: 1.11.0
    18    pullPolicy: IfNotPresent
    19  
    20  service:
    21    annotations: {}
    22    clusterIP: ""
    23    externalIPs: []
    24    loadBalancerIP: ""
    25    loadBalancerSourceRanges: []
    26    type: ClusterIP
    27    port: 8888
    28    nodePort: ""
    29  
    30  podAnnotations: {}
    31  
    32  resources: {}
    33  
    34  nodeSelector: {}