Kubernetes - ConfigMaps
Given this pod spec snippet, what environment variables will be available inside the container?
Assuming
envFrom:
- configMapRef:
name: app-config
Assuming
app-config contains keys API_URL and TIMEOUT.