Skip to content

Commit

Permalink
add remote_src
Browse files Browse the repository at this point in the history
  • Loading branch information
jarpat committed Apr 2, 2024
1 parent 5360484 commit 655bab5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions roles/kubernetes/control_plane/init/primary/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,15 @@
ansible.builtin.copy:
src: "/etc/kubernetes/admin.conf"
dest: "/etc/kubernetes/admin.conf.bak"
remote_src: true
tags:
- install
- update
- name: Replace admin with super.conf
ansible.builtin.copy:
src: "/etc/kubernetes/super-admin.conf"
dest: "/etc/kubernetes/admin.conf"
remote_src: true
tags:
- install
- update
Expand All @@ -46,6 +48,7 @@
ansible.builtin.copy:
src: "/etc/kubernetes/admin.conf.bak"
dest: "/etc/kubernetes/admin.conf"
remote_src: true
tags:
- install
- update
Expand Down

0 comments on commit 655bab5

Please sign in to comment.