diff --git a/slides/k8s/create-chart.md b/slides/k8s/create-chart.md index 4d7731d2..1d3e1e74 100644 --- a/slides/k8s/create-chart.md +++ b/slides/k8s/create-chart.md @@ -34,7 +34,7 @@ ```bash while read kind name; do - kubectl get -o yaml --export $kind $name > dockercoins/templates/$name-$kind.yaml + kubectl get -o yaml $kind $name > dockercoins/templates/$name-$kind.yaml done <