Remove --export since it's being deprecated

This commit is contained in:
Jerome Petazzoni
2019-06-01 20:02:53 -05:00
parent b572d06f82
commit 3e87e69608
2 changed files with 2 additions and 2 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

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