Kubernetes - ConfigMaps
You want to create a ConfigMap named
Later, you mount this ConfigMap as environment variables in a Pod. What should you be careful about regarding the
app-settings with these key-value pairs:env=production, debug=false, and timeout=0. You run:kubectl create configmap app-settings --from-literal=env=production --from-literal=debug=false --from-literal=timeout=0
Later, you mount this ConfigMap as environment variables in a Pod. What should you be careful about regarding the
timeout value?