$ cat app.properties 
environment=production
logging=INFO
logs_path=$APP_HOME/logs/
parllel_jobs=3
wait_time=30sec

$ kubectl create configmap app-config --from-file configs/app.properties
$ kubectl create configmap app-config --from-file configs/

$ kubectl create configmap app-config --from-literal environment=production --from-literal logging=INFO
