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 can
This commit is contained in:
Kenichi Omichi 2020-12-09 07:14:51 -08:00 committed by GitHub
parent 85982dc8e9
commit 33a60fe919
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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