Difference between revisions of "SecretKeyRef"

From wikieduonline
Jump to navigation Jump to search
Line 29: Line 29:
 
</pre>
 
</pre>
  
 +
== Related ==
 +
* [[Use ConfigMaps and Secrets to configure applications]], [[CKA v1.24]] (2022), [[CKA v1.23]] (2021)
  
 
== See also ==
 
== See also ==

Revision as of 19:04, 20 September 2022

Official example

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

See also

Advertising: