Browse Source
Merge pull request #2632 from Atoms/permission_fix
fix kubectl download location and kubectl.sh helper owner/group remove
pull/2636/head
Aivars Sterns
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
3 deletions
-
roles/kubernetes/client/tasks/main.yml
|
@ -55,7 +55,7 @@ |
|
|
- name: Copy kubectl binary to ansible host |
|
|
- name: Copy kubectl binary to ansible host |
|
|
fetch: |
|
|
fetch: |
|
|
src: "{{ bin_dir }}/kubectl" |
|
|
src: "{{ bin_dir }}/kubectl" |
|
|
dest: "{{ bin_dir }}/kubectl" |
|
|
|
|
|
|
|
|
dest: "{{ artifacts_dir }}/kubectl" |
|
|
flat: yes |
|
|
flat: yes |
|
|
validate_checksum: no |
|
|
validate_checksum: no |
|
|
become: no |
|
|
become: no |
|
@ -68,8 +68,6 @@ |
|
|
#!/bin/bash |
|
|
#!/bin/bash |
|
|
kubectl --kubeconfig=admin.conf $@ |
|
|
kubectl --kubeconfig=admin.conf $@ |
|
|
dest: "{{ artifacts_dir }}/kubectl.sh" |
|
|
dest: "{{ artifacts_dir }}/kubectl.sh" |
|
|
owner: root |
|
|
|
|
|
group: root |
|
|
|
|
|
mode: 0755 |
|
|
mode: 0755 |
|
|
become: no |
|
|
become: no |
|
|
run_once: yes |
|
|
run_once: yes |
|
|