Difference between revisions of "SecretKeyRef"
Jump to navigation
Jump to search
| Line 3: | Line 3: | ||
== Official example == | == Official example == | ||
https://kubernetes.io/docs/concepts/configuration/secret/ | https://kubernetes.io/docs/concepts/configuration/secret/ | ||
| − | + | ||
| − | + | {{K8s secret official example}} | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
== Related == | == Related == | ||
Latest revision as of 09:46, 12 October 2022
Official example[edit]
https://kubernetes.io/docs/concepts/configuration/secret/
apiVersion: v1 kind: Pod metadata: name: secret-env-pod spec: containers: - name: mycontainer image: redis env: - name: SECRET_USERNAME valueFrom: secretKeyRef: name: mysecret key: username optional: false # same as default; "mysecret" must exist # and include a key named "username" - name: SECRET_PASSWORD valueFrom: secretKeyRef: name: mysecret key: password optional: false # same as default; "mysecret" must exist # and include a key named "password" restartPolicy: Never
Related[edit]
- Use ConfigMaps and Secrets to configure applications, CKA v1.24 (2022), CKA v1.23 (2021)
See also[edit]
Advertising: