Skip to content

Commit

Permalink
Fix a couple YAML syntax errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardomurri committed May 14, 2020
1 parent 8c281fe commit b1aeec1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ roleRef:
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: admin-user
namespace: kube-system
- kind: ServiceAccount
name: admin-user
namespace: kube-system
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@
when: "'failed' in token_list_result.stderr"

- name: Copy Kubernetes config (Centos)
copy:
src: /etc/kubernetes/admin.conf
dest: /home/centos/.kube/config
remote_src: yes
owner: centos
group: centos
copy:
src: /etc/kubernetes/admin.conf
dest: /home/centos/.kube/config
remote_src: yes
owner: centos
group: centos
when: is_centos

- name: Copy Kubernetes config (Ubuntu)
copy:
src: /etc/kubernetes/admin.conf
dest: /home/ubuntu/.kube/config
remote_src: yes
owner: ubuntu
group: ubuntu
copy:
src: /etc/kubernetes/admin.conf
dest: /home/ubuntu/.kube/config
remote_src: yes
owner: ubuntu
group: ubuntu
when: is_ubuntu

- name: Networking
Expand Down

0 comments on commit b1aeec1

Please sign in to comment.