You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
There is a heavy usage of
configMap
in community config repos like fabric8, helm charts, etc. Apart fromsecret
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. ...
The text was updated successfully, but these errors were encountered: