File tree 2 files changed +3
-3
lines changed
ansible/roles/sample-project/tasks
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
18
18
- name : Use template to create kubeconfig.yaml
19
19
vars :
20
- server : " https://{{hostvars[groups['k8s_cluster '][0]].ansible_host}}:6443"
20
+ server : " https://{{hostvars[groups['k3s_cluster '][0]].ansible_host}}:6443"
21
21
template :
22
22
src : ./templates/kubeconfig.j2
23
23
dest : /home/ubuntu/project/kubeconfig.yaml
Original file line number Diff line number Diff line change 19
19
- name : connect to cluster and get kubeconfig
20
20
command : cat /etc/rancher/k3s/k3s.yaml
21
21
register : command_output
22
- delegate_to : " {{groups['k8s_cluster '][0]}}"
22
+ delegate_to : " {{groups['k3s_cluster '][0]}}"
23
23
become : true
24
24
25
25
- name : Ensures /.kube dir exists
34
34
replace :
35
35
path : /.kube/config
36
36
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"
38
38
backup : yes
You can’t perform that action at this time.
0 commit comments