├── .gitbook.yaml ├── .github └── workflows │ └── ci.yml ├── .markdownlint.json ├── .travis.yml ├── .verify-links.sh ├── LICENSE ├── README.md ├── charts └── guestbook │ ├── Chart.yaml │ ├── LICENSE │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── guestbook-deployment.yaml │ ├── guestbook-service.yaml │ ├── redis-master-deployment.yaml │ ├── redis-master-service.yaml │ ├── redis-slave-deployment.yaml │ └── redis-slave-service.yaml │ └── values.yaml ├── docs ├── Lab0 │ └── README.md ├── Lab1 │ └── README.md ├── Lab2 │ └── README.md ├── Lab3 │ └── README.md ├── Lab4 │ └── README.md ├── README.md ├── SUMMARY.md ├── images │ ├── guestbook-page.png │ └── helm-architecture.png └── index.yaml ├── index.yaml ├── mkdocs.yml ├── presentation ├── Helm.pptx ├── README.md └── demosteps.md └── repo └── stable ├── guestbook-0.1.0.tgz ├── guestbook-0.2.0.tgz ├── guestbook-0.2.1.tgz └── index.yaml /.gitbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/.gitbook.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verify-links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/.verify-links.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/README.md -------------------------------------------------------------------------------- /charts/guestbook/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/Chart.yaml -------------------------------------------------------------------------------- /charts/guestbook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/LICENSE -------------------------------------------------------------------------------- /charts/guestbook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/README.md -------------------------------------------------------------------------------- /charts/guestbook/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/guestbook/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/guestbook/templates/guestbook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/guestbook-deployment.yaml -------------------------------------------------------------------------------- /charts/guestbook/templates/guestbook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/guestbook-service.yaml -------------------------------------------------------------------------------- /charts/guestbook/templates/redis-master-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/redis-master-deployment.yaml -------------------------------------------------------------------------------- /charts/guestbook/templates/redis-master-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/redis-master-service.yaml -------------------------------------------------------------------------------- /charts/guestbook/templates/redis-slave-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/redis-slave-deployment.yaml -------------------------------------------------------------------------------- /charts/guestbook/templates/redis-slave-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/templates/redis-slave-service.yaml -------------------------------------------------------------------------------- /charts/guestbook/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/charts/guestbook/values.yaml -------------------------------------------------------------------------------- /docs/Lab0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/Lab0/README.md -------------------------------------------------------------------------------- /docs/Lab1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/Lab1/README.md -------------------------------------------------------------------------------- /docs/Lab2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/Lab2/README.md -------------------------------------------------------------------------------- /docs/Lab3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/Lab3/README.md -------------------------------------------------------------------------------- /docs/Lab4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/Lab4/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/images/guestbook-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/images/guestbook-page.png -------------------------------------------------------------------------------- /docs/images/helm-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/images/helm-architecture.png -------------------------------------------------------------------------------- /docs/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/docs/index.yaml -------------------------------------------------------------------------------- /index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/index.yaml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /presentation/Helm.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/presentation/Helm.pptx -------------------------------------------------------------------------------- /presentation/README.md: -------------------------------------------------------------------------------- 1 | # README 2 | -------------------------------------------------------------------------------- /presentation/demosteps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/presentation/demosteps.md -------------------------------------------------------------------------------- /repo/stable/guestbook-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/repo/stable/guestbook-0.1.0.tgz -------------------------------------------------------------------------------- /repo/stable/guestbook-0.2.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/repo/stable/guestbook-0.2.0.tgz -------------------------------------------------------------------------------- /repo/stable/guestbook-0.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/repo/stable/guestbook-0.2.1.tgz -------------------------------------------------------------------------------- /repo/stable/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/helm101/HEAD/repo/stable/index.yaml --------------------------------------------------------------------------------