Merge branch 'master' into wwrk-2019-06

This commit is contained in:
Jerome Petazzoni
2019-06-01 20:03:15 -05:00
3 changed files with 5 additions and 3 deletions

View File

@@ -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 <<EOF
deployment worker
deployment hasher

View File

@@ -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)

View File

@@ -62,7 +62,7 @@
- These "manifests" are basically YAML definitions
(As produced by `kubectl get pod my-little-pod -o yaml --export`)
(As produced by `kubectl get pod my-little-pod -o yaml`)
---