From ac943e9890a54c03737d125731150213cdf34751 Mon Sep 17 00:00:00 2001 From: Dennis Ochocki Date: Tue, 14 May 2024 17:48:01 +0200 Subject: [PATCH] fixed typo in filename of 'k8s_json_patch'-action (#652) fixed typo in filename of 'k8s_json_patch'-action 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