From b572d06f82ef03f82a4bd9f7d9c65e5a4b305488 Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Sat, 1 Jun 2019 19:34:41 -0500 Subject: [PATCH 1/2] Add pretty line break --- slides/k8s/dashboard.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/slides/k8s/dashboard.md b/slides/k8s/dashboard.md index 153f3493..bae2d732 100644 --- a/slides/k8s/dashboard.md +++ b/slides/k8s/dashboard.md @@ -153,5 +153,7 @@ The dashboard will then ask you which authentication you want to use. -- -- It introduces new failure modes (like if you try to apply yaml from a link that's no longer valid) +- It introduces new failure modes + + (for instance, if you try to apply YAML from a link that's no longer valid) From 3e87e696084908fb6090dc3a988e24d65b9db11a Mon Sep 17 00:00:00 2001 From: Jerome Petazzoni Date: Sat, 1 Jun 2019 20:02:53 -0500 Subject: [PATCH 2/2] Remove --export since it's being deprecated --- slides/k8s/create-chart.md | 2 +- slides/k8s/staticpods.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 <