added missing EOF (#15159)

* added missing EOF

* fixed a typo and leading output
This commit is contained in:
Naoki Oketani
2019-07-03 22:46:34 +09:00
committed by Kubernetes Prow Robot
parent db9dacafc0
commit aa4e6fe95e
@@ -153,7 +153,7 @@ secretGenerator:
- name: example-secret-2 - name: example-secret-2
literals: literals:
- username=admin - username=admin
- password=secert - password=secret
EOF EOF
``` ```
@@ -162,7 +162,7 @@ The generated Secret is as follows:
```yaml ```yaml
apiVersion: v1 apiVersion: v1
data: data:
password: c2VjZXJ0 password: c2VjcmV0
username: YWRtaW4= username: YWRtaW4=
kind: Secret kind: Secret
metadata: metadata:
@@ -707,6 +707,7 @@ cat <<EOF > base/kustomization.yaml
resources: resources:
- deployment.yaml - deployment.yaml
- service.yaml - service.yaml
EOF
``` ```
This base can be used in multiple overlays. You can add different `namePrefix` or other cross-cutting fields This base can be used in multiple overlays. You can add different `namePrefix` or other cross-cutting fields