Kubernetes - Secrets
Given this Pod spec snippet, what will be the value of environment variable
Assuming the Secret
API_KEY inside the container?env:
- name: API_KEY
valueFrom:
secretKeyRef:
name: api-secret
key: key1Assuming the Secret
api-secret has key1: abc123.