CKAD - Certified Kubernetes Application Developer Practice Test
CKAD - Certified Kubernetes Application Developer CKAD Configuration and Secrets
How do you create a ConfigMap named 'app-config' from a literal key-value pair 'APP_ENV=production'?
Select your answer
A
kubectl create configmap app-config --from-literal=APP_ENV=production
B
kubectl apply configmap app-config --value=APP_ENV=production
C
kubectl set configmap app-config APP_ENV=production
D
kubectl create configmap app-config --key=APP_ENV --value=production
Hint