Move topic to Injecting Data section. (#3623)

* Move topic to Injecting Data section.

* Update include paths.

* Remove old file.
This commit is contained in:
Steve Perry
2017-05-03 14:20:05 -07:00
committed by GitHub
parent 7c1e0a95fb
commit 6935b1c6a9
5 changed files with 7 additions and 5 deletions
@@ -0,0 +1,17 @@
apiVersion: v1
kind: Pod
metadata:
name: secret-test-pod
spec:
containers:
- name: test-container
image: nginx
volumeMounts:
# name must match the volume name below
- name: secret-volume
mountPath: /etc/secret-volume
# The secret data is exposed to Containers in the Pod through a Volume.
volumes:
- name: secret-volume
secret:
secretName: test-secret