mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-05-08 14:02:38 +00:00
helm: accept context and validate_certs (#74)
I've got the following environment variable set: - `K8S_AUTH_VERIFY_SSL=False` Helm's `validate_certs` parameter fallback on this environment variable. Which means, on my system, the `validate_certs` will already be set. So we cannot make this parameter exclusive wih another one.
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
bugfixes:
|
||||||
|
- "helm - Accept ``validate_certs`` with a ``context`` (https://github.com/ansible-collections/kubernetes.core/pull/74)."
|
||||||
@@ -519,9 +519,7 @@ def main():
|
|||||||
],
|
],
|
||||||
mutually_exclusive=[
|
mutually_exclusive=[
|
||||||
("context", "ca_cert"),
|
("context", "ca_cert"),
|
||||||
("context", "validate_certs"),
|
|
||||||
("kubeconfig", "ca_cert"),
|
("kubeconfig", "ca_cert"),
|
||||||
("kubeconfig", "validate_certs")
|
|
||||||
],
|
],
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user