github.com/zoumo/helm@v2.5.0+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 # See the list at https://hub.docker.com/r/library/nginx/tags/ 6 imageTag: "1.11.0" 7 8 # The port (defined on the service) to access the HTTP server. 9 httpPort: 8888 10 11 # Number of nginx instances to run 12 replicaCount: 1 13 14 # Evaluated by the post-install hook 15 sleepyTime: "10" 16 17 index: >- 18 <h1>Hello</h1> 19 <p>This is a test</p>