InterviewSolution
Saved Bookmarks
| 1. |
What the following in the Deployment configuration file mean? |
|
Answer» spec: containers: - name: USER_PASSWORD valueFrom: secretKeyRef: name: some-SECRET key: password Explanation - USER_PASSWORD environment variable will STORE the VALUE from the password key in the secret called "some-secret" In other WORDS, you reference a value from a KUBERNETES Secret. |
|