diff --git a/changelogs/fragments/20241116-helm_registry_auth.yaml b/changelogs/fragments/20241116-helm_registry_auth.yaml deleted file mode 100644 index 3d02483b..00000000 --- a/changelogs/fragments/20241116-helm_registry_auth.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -minor_changes: - - new module helm_registry_auth to support helm registry login and logout operations (https://github.com/ansible-collections/kubernetes.core/pull/800). diff --git a/plugins/modules/helm_registry_auth.py b/plugins/modules/helm_registry_auth.py index 98f7c650..5d79c84c 100644 --- a/plugins/modules/helm_registry_auth.py +++ b/plugins/modules/helm_registry_auth.py @@ -218,7 +218,7 @@ def main(): changed = True if module.check_mode: - module.exit_json(changed=changed) + module.exit_json(changed=changed, command=helm_cmd) # This one is reduntant, but it's here for clarity elif not changed: module.exit_json(changed=False)