Kubernetes - ConfigMaps
Given this pod spec snippet, what environment variables will be available inside the container?
envFrom:
- configMapRef:
name: my-config
And the ConfigMap my-config contains keys: API_URL=https://api.example.com and TIMEOUT=30.