From 764e4499b50452570a907b3009504e90b994e8d7 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Fri, 1 Apr 2022 06:29:55 +0530 Subject: [PATCH] k8s_json_patch: Minor typo fix in Example section (#425) k8s_json_patch: Minor typo fix in Example section SUMMARY Fixes: #411 ISSUE TYPE Docs Pull Request COMPONENT NAME changelogs/fragments/411_k8s_json_patch.yml plugins/modules/k8s_json_patch.py Reviewed-by: Mike Graves --- changelogs/fragments/411_k8s_json_patch.yml | 3 +++ plugins/modules/k8s_json_patch.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/411_k8s_json_patch.yml diff --git a/changelogs/fragments/411_k8s_json_patch.yml b/changelogs/fragments/411_k8s_json_patch.yml new file mode 100644 index 00000000..a0b1a4b7 --- /dev/null +++ b/changelogs/fragments/411_k8s_json_patch.yml @@ -0,0 +1,3 @@ +--- +minor_changes: +- k8s_json_patch - minor typo fix in the example section (https://github.com/ansible-collections/kubernetes.core/issues/411). diff --git a/plugins/modules/k8s_json_patch.py b/plugins/modules/k8s_json_patch.py index bc4442e3..27b5c8f4 100644 --- a/plugins/modules/k8s_json_patch.py +++ b/plugins/modules/k8s_json_patch.py @@ -79,7 +79,7 @@ EXAMPLES = r""" path: /metadata/labels/app value: myapp - op: replace - patch: /spec/containers/0/image + path: /spec/containers/0/image value: nginx """