From 2dc7ba07ab486b1555906486a1a4495313f15909 Mon Sep 17 00:00:00 2001 From: ProbStub Date: Tue, 3 May 2022 09:56:13 +0200 Subject: [PATCH 1/2] Adding reference how to do configmap changes In reference to https://stackoverflow.com/questions/54571185/how-to-patch-a-configmap-in-kubernetes adding a note on how to modify configmaps in a deployment. --- content/en/docs/concepts/configuration/configmap.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/en/docs/concepts/configuration/configmap.md b/content/en/docs/concepts/configuration/configmap.md index eb48d8e501..44c71656ba 100644 --- a/content/en/docs/concepts/configuration/configmap.md +++ b/content/en/docs/concepts/configuration/configmap.md @@ -279,5 +279,6 @@ to the deleted ConfigMap, it is recommended to recreate these pods. * Read about [Secrets](/docs/concepts/configuration/secret/). * Read [Configure a Pod to Use a ConfigMap](/docs/tasks/configure-pod-container/configure-pod-configmap/). +* Read about [changing a ConfigMap (or any other Kubernetes object)] (/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/) * Read [The Twelve-Factor App](https://12factor.net/) to understand the motivation for separating code from configuration. From f0702ba4ea0a4aa6e50446c2b1384368e36efe8a Mon Sep 17 00:00:00 2001 From: ProbStub Date: Wed, 4 May 2022 09:05:54 +0200 Subject: [PATCH 2/2] Update content/en/docs/concepts/configuration/configmap.md Co-authored-by: Jihoon Seo <46767780+jihoon-seo@users.noreply.github.com> --- content/en/docs/concepts/configuration/configmap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/configuration/configmap.md b/content/en/docs/concepts/configuration/configmap.md index 44c71656ba..4f5ace4348 100644 --- a/content/en/docs/concepts/configuration/configmap.md +++ b/content/en/docs/concepts/configuration/configmap.md @@ -279,6 +279,6 @@ to the deleted ConfigMap, it is recommended to recreate these pods. * Read about [Secrets](/docs/concepts/configuration/secret/). * Read [Configure a Pod to Use a ConfigMap](/docs/tasks/configure-pod-container/configure-pod-configmap/). -* Read about [changing a ConfigMap (or any other Kubernetes object)] (/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/) +* Read about [changing a ConfigMap (or any other Kubernetes object)](/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/) * Read [The Twelve-Factor App](https://12factor.net/) to understand the motivation for separating code from configuration.