Fix warning of mkdir usage (#6951)
This fixes the following warning: [kubernetes/client : Generate admin kubeconfig with external api endpoint] [WARNING]: Consider using the file module with state=directory rather than running 'mkdir'. If you need to use command because file is insufficient you canpull/7009/head
parent
85982dc8e9
commit
33a60fe919
|
@ -47,10 +47,16 @@
|
|||
port: "{{ kube_apiserver_port }}"
|
||||
timeout: 180
|
||||
|
||||
- name: Create external_kubeconfig dir
|
||||
file:
|
||||
path: "{{ kube_config_dir }}/external_kubeconfig"
|
||||
mode: "0750"
|
||||
state: directory
|
||||
when: kubeconfig_localhost
|
||||
|
||||
# NOTE(mattymo): Please forgive this workaround
|
||||
- name: Generate admin kubeconfig with external api endpoint # noqa 302
|
||||
shell: >-
|
||||
mkdir -p {{ kube_config_dir }}/external_kubeconfig &&
|
||||
{{ bin_dir }}/kubeadm
|
||||
init phase
|
||||
kubeconfig admin
|
||||
|
|
Loading…
Reference in New Issue