Skip to content
Snippets Groups Projects
Unverified Commit 33a60fe9 authored by Kenichi Omichi's avatar Kenichi Omichi Committed by GitHub
Browse files

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
parent 85982dc8
No related branches found
No related tags found
No related merge requests found
...@@ -47,10 +47,16 @@ ...@@ -47,10 +47,16 @@
port: "{{ kube_apiserver_port }}" port: "{{ kube_apiserver_port }}"
timeout: 180 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 # NOTE(mattymo): Please forgive this workaround
- name: Generate admin kubeconfig with external api endpoint # noqa 302 - name: Generate admin kubeconfig with external api endpoint # noqa 302
shell: >- shell: >-
mkdir -p {{ kube_config_dir }}/external_kubeconfig &&
{{ bin_dir }}/kubeadm {{ bin_dir }}/kubeadm
init phase init phase
kubeconfig admin kubeconfig admin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment