From 5044cfc030e9c57aa4fab48d3456e0b991941593 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Tue, 14 May 2024 17:07:48 +0000 Subject: [PATCH] fixed typo in filename of 'k8s_json_patch'-action (#652) (#714) [PR #652/ac943e98 backport][stable-3] fixed typo in filename of 'k8s_json_patch'-action This is a backport of PR #652 as merged into main (ac943e9). SUMMARY The filename/symlink of the action for the 'k8s_json_patch'-module was wrong. Renamed file from 'ks8_json_patch.py' to ' k8s_json_patch.py' ISSUE TYPE Bugfix Pull Request COMPONENT NAME k8s_json_patch ADDITIONAL INFORMATION Because of the wrong filename things like unvaulting kubeconfig files did not worked. Reviewed-by: Mike Graves --- changelogs/fragments/652-fix-json-patch-action.yml | 2 ++ plugins/action/{ks8_json_patch.py => k8s_json_patch.py} | 0 2 files changed, 2 insertions(+) create mode 100644 changelogs/fragments/652-fix-json-patch-action.yml rename plugins/action/{ks8_json_patch.py => k8s_json_patch.py} (100%) diff --git a/changelogs/fragments/652-fix-json-patch-action.yml b/changelogs/fragments/652-fix-json-patch-action.yml new file mode 100644 index 00000000..541e058e --- /dev/null +++ b/changelogs/fragments/652-fix-json-patch-action.yml @@ -0,0 +1,2 @@ +bugfixes: + - k8s_json_patch - rename action symlink to ensure k8s action plugin is used (https://github.com/ansible-collections/kubernetes.core/pull/652). diff --git a/plugins/action/ks8_json_patch.py b/plugins/action/k8s_json_patch.py similarity index 100% rename from plugins/action/ks8_json_patch.py rename to plugins/action/k8s_json_patch.py