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 <