From 372146a11473e5eca89b820167ecc052e1613e9a Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Tue, 26 Oct 2021 19:34:13 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Update=20Helm=20basic=20ch?= =?UTF-8?q?art=20content?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- slides/k8s/helm-create-basic-chart.md | 69 ++++++++------------------- 1 file changed, 20 insertions(+), 49 deletions(-) diff --git a/slides/k8s/helm-create-basic-chart.md b/slides/k8s/helm-create-basic-chart.md index 1a472b9d..79d80a84 100644 --- a/slides/k8s/helm-create-basic-chart.md +++ b/slides/k8s/helm-create-basic-chart.md @@ -23,63 +23,36 @@ --- -## Exporting the YAML for our application +## Adding the manifests of our app -- The following section assumes that DockerCoins is currently running - -- If DockerCoins is not running, see next slide +- There is a convenient `dockercoins.yml` in the repo .exercise[ -- Create one YAML file for each resource that we need: - .small[ +- Copy the YAML file to the `templates` subdirectory in the chart: ```bash - - while read kind name; do - kubectl get -o yaml $kind $name > dockercoins/templates/$name-$kind.yaml - done <