diff --git a/changelogs/fragments/helm_validate_certs_not_exclusive.yaml b/changelogs/fragments/helm_validate_certs_not_exclusive.yaml new file mode 100644 index 00000000..a3eed341 --- /dev/null +++ b/changelogs/fragments/helm_validate_certs_not_exclusive.yaml @@ -0,0 +1,3 @@ +--- +bugfixes: +- "helm - Accept ``validate_certs`` with a ``context`` (https://github.com/ansible-collections/kubernetes.core/pull/74)." diff --git a/plugins/modules/helm.py b/plugins/modules/helm.py index 89863225..708f33c0 100644 --- a/plugins/modules/helm.py +++ b/plugins/modules/helm.py @@ -519,9 +519,7 @@ def main(): ], mutually_exclusive=[ ("context", "ca_cert"), - ("context", "validate_certs"), ("kubeconfig", "ca_cert"), - ("kubeconfig", "validate_certs") ], supports_check_mode=True, )