You must mount a directory folder of

You must mount a directory folder of configuration files located at /app/config/ on a Pod. What command can you use in a Kubernetes command-line interface (CLI) to create a ConfigMap named app-config with all files as key/value pairs?

kubectl create configmap app-config –from-file=/app/config/
kubectl create configmap –name=app-config –from-folder=/app/config/
kubectl create configmap app-config /app/config/
kubectl create configmap app-config –from-folder=/app/config/
I don’t know yet.

Read more here: Source link