How can we keep track of changes in config maps?

1/6/2020

Sometimes recent changes done in config maps are needed , how can we retrieve this history? Is there any utility provided by k8s to keep track of these changes? If not , How can we achieve it?

My env is made up of OCP,K8S

-- swapnil7
kubernetes
openshift

1 Answer

1/6/2020

What kind of data are you storing in config maps?There is no utility provided by Kubernetes.You really need to treat config as code and store config maps in your source code version control system like git.

-- Arghya Sadhu
Source: StackOverflow