├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cluster ├── canaries │ └── podinfo.yaml ├── charts │ └── podinfo │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ ├── profile.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── tests │ │ │ ├── jwt.yaml │ │ │ └── service.yaml │ │ └── values.yaml ├── namespaces │ ├── account.yaml │ ├── ingress-nginx.yaml │ └── prod.yaml └── releases │ ├── helm-tester.yaml │ ├── load-tester.yaml │ ├── nginx-ingress.yaml │ ├── podinfo.yaml │ └── sealed-secrets.yaml ├── docs ├── .vuepress │ ├── config.js │ └── public │ │ ├── favicon.png │ │ ├── gitops-helm-workshop.png │ │ ├── linkerd-dashboard.png │ │ ├── podinfo-3.0.0.png │ │ ├── podinfo-3.0.5.png │ │ └── website.css ├── README.md ├── canary │ └── README.md ├── helm │ └── README.md ├── intro │ └── README.md ├── prerequisites │ └── README.md └── test │ └── README.md ├── package.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/README.md -------------------------------------------------------------------------------- /cluster/canaries/podinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/canaries/podinfo.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/.helmignore -------------------------------------------------------------------------------- /cluster/charts/podinfo/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/Chart.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/README.md -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/NOTES.txt -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/_helpers.tpl -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/deployment.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/hpa.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/ingress.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/profile.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/service.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/tests/jwt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/tests/jwt.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/templates/tests/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/templates/tests/service.yaml -------------------------------------------------------------------------------- /cluster/charts/podinfo/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/charts/podinfo/values.yaml -------------------------------------------------------------------------------- /cluster/namespaces/account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/namespaces/account.yaml -------------------------------------------------------------------------------- /cluster/namespaces/ingress-nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/namespaces/ingress-nginx.yaml -------------------------------------------------------------------------------- /cluster/namespaces/prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/namespaces/prod.yaml -------------------------------------------------------------------------------- /cluster/releases/helm-tester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/releases/helm-tester.yaml -------------------------------------------------------------------------------- /cluster/releases/load-tester.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/releases/load-tester.yaml -------------------------------------------------------------------------------- /cluster/releases/nginx-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/releases/nginx-ingress.yaml -------------------------------------------------------------------------------- /cluster/releases/podinfo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/releases/podinfo.yaml -------------------------------------------------------------------------------- /cluster/releases/sealed-secrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/cluster/releases/sealed-secrets.yaml -------------------------------------------------------------------------------- /docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/.vuepress/config.js -------------------------------------------------------------------------------- /docs/.vuepress/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/.vuepress/public/favicon.png -------------------------------------------------------------------------------- /docs/.vuepress/public/gitops-helm-workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/.vuepress/public/gitops-helm-workshop.png -------------------------------------------------------------------------------- /docs/.vuepress/public/linkerd-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/.vuepress/public/linkerd-dashboard.png -------------------------------------------------------------------------------- /docs/.vuepress/public/podinfo-3.0.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/.vuepress/public/podinfo-3.0.0.png -------------------------------------------------------------------------------- /docs/.vuepress/public/podinfo-3.0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/.vuepress/public/podinfo-3.0.5.png -------------------------------------------------------------------------------- /docs/.vuepress/public/website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/.vuepress/public/website.css -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/canary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/canary/README.md -------------------------------------------------------------------------------- /docs/helm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/helm/README.md -------------------------------------------------------------------------------- /docs/intro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/intro/README.md -------------------------------------------------------------------------------- /docs/prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/prerequisites/README.md -------------------------------------------------------------------------------- /docs/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/docs/test/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanprodan/gitops-helm-workshop/HEAD/yarn.lock --------------------------------------------------------------------------------