redhat-developer / opencompose

OpenCompose - A higher level abstraction for Kubernetes Resource
Apache License 2.0
64 stars 12 forks source link

Support for configMap #124

Open surajssd opened 7 years ago

surajssd commented 7 years ago

There is a heavy usage of configMap in community config repos like fabric8, helm charts, etc. Apart from secret this is one of the important thing that needs to be added. Having app configuration in configmap over k8s configurations allows someone to edit configs in production running services and have it reflected immediately across the cluster. Pattern of using configMaps more is emerging it seems.

Info about configMaps can be found in docs, API references.

$ kubectl explain cm
DESCRIPTION:
ConfigMap holds configuration data for pods to consume.

...