github.com/koderover/helm@v2.17.0+incompatible/docs/examples/README.md (about) 1 # Helm Examples 2 3 This directory contains example charts to help you get started with 4 chart development. 5 6 ## Alpine 7 8 The `alpine` chart is very simple, and is a good starting point. 9 10 It simply deploys a single pod running Alpine Linux. 11 12 ## Nginx 13 14 The `nginx` chart shows how to compose several resources into one chart, 15 and it illustrates more complex template usage. 16 17 It deploys a `Deployment` (which creates a `ReplicaSet`), a `ConfigMap`, and a `Service`. The replica set starts an nginx pod. The config 18 map stores the files that the nginx server can serve.