fix: ansible_kubectl_ssl_ca_cert variable (#50217)
* fix: mistake for ansible_kubectl_ssl_ca_cert variable * fix: K8S_AUTH_VERIFY_SSL
This commit is contained in:
parent
4fe346da18
commit
344b6002b1
2 changed files with 4 additions and 4 deletions
|
@ -143,7 +143,7 @@ DOCUMENTATION = """
|
||||||
- Path to a CA certificate used to authenticate with the API.
|
- Path to a CA certificate used to authenticate with the API.
|
||||||
default: ''
|
default: ''
|
||||||
vars:
|
vars:
|
||||||
- name: ansible_kubectl_cert_file
|
- name: ansible_kubectl_ssl_ca_cert
|
||||||
env:
|
env:
|
||||||
- name: K8S_AUTH_SSL_CA_CERT
|
- name: K8S_AUTH_SSL_CA_CERT
|
||||||
kubectl_verify_ssl:
|
kubectl_verify_ssl:
|
||||||
|
@ -153,7 +153,7 @@ DOCUMENTATION = """
|
||||||
vars:
|
vars:
|
||||||
- name: ansible_kubectl_verify_ssl
|
- name: ansible_kubectl_verify_ssl
|
||||||
env:
|
env:
|
||||||
- name: K8s_AUTH_VERIFY_SSL
|
- name: K8S_AUTH_VERIFY_SSL
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import distutils.spawn
|
import distutils.spawn
|
||||||
|
|
|
@ -127,7 +127,7 @@ DOCUMENTATION = """
|
||||||
- Path to a CA certificate used to authenticate with the API.
|
- Path to a CA certificate used to authenticate with the API.
|
||||||
default: ''
|
default: ''
|
||||||
vars:
|
vars:
|
||||||
- name: ansible_oc_cert_file
|
- name: ansible_oc_ssl_ca_cert
|
||||||
env:
|
env:
|
||||||
- name: K8S_AUTH_SSL_CA_CERT
|
- name: K8S_AUTH_SSL_CA_CERT
|
||||||
oc_verify_ssl:
|
oc_verify_ssl:
|
||||||
|
@ -137,7 +137,7 @@ DOCUMENTATION = """
|
||||||
vars:
|
vars:
|
||||||
- name: ansible_oc_verify_ssl
|
- name: ansible_oc_verify_ssl
|
||||||
env:
|
env:
|
||||||
- name: K8s_AUTH_VERIFY_SSL
|
- name: K8S_AUTH_VERIFY_SSL
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from ansible.plugins.connection.kubectl import Connection as KubectlConnection
|
from ansible.plugins.connection.kubectl import Connection as KubectlConnection
|
||||||
|
|
Loading…
Reference in a new issue