Skip to content

Commit 93045df

Browse files
committed
Fix: k8s_cluster => k3s_cluster in yamls
1 parent fa4a8be commit 93045df

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ansible/roles/sample-project/tasks/create-kubeconfig.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
- name: Use template to create kubeconfig.yaml
1919
vars:
20-
server: "https://{{hostvars[groups['k8s_cluster'][0]].ansible_host}}:6443"
20+
server: "https://{{hostvars[groups['k3s_cluster'][0]].ansible_host}}:6443"
2121
template:
2222
src: ./templates/kubeconfig.j2
2323
dest: /home/ubuntu/project/kubeconfig.yaml

ansible/roles/sample-project/tasks/install-kubectl-cli.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
- name: connect to cluster and get kubeconfig
2020
command: cat /etc/rancher/k3s/k3s.yaml
2121
register: command_output
22-
delegate_to: "{{groups['k8s_cluster'][0]}}"
22+
delegate_to: "{{groups['k3s_cluster'][0]}}"
2323
become: true
2424

2525
- name: Ensures /.kube dir exists
@@ -34,5 +34,5 @@
3434
replace:
3535
path: /.kube/config
3636
regexp: https:\/\/127.0.0.1:6443
37-
replace: "https://{{hostvars[groups['k8s_cluster'][0]].ansible_host}}:6443"
37+
replace: "https://{{hostvars[groups['k3s_cluster'][0]].ansible_host}}:6443"
3838
backup: yes

0 commit comments

Comments
 (0)