Skip to content

Commit

Permalink
Fix typo and add kubeconfig copy to user homedir
Browse files Browse the repository at this point in the history
  • Loading branch information
itwars committed May 18, 2019
1 parent cf0b306 commit 4abaf35
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build a Kubernetes cluster using k3s via Ansible.

https://github.com/itwars

## K3s Ansible Playbook

Build a Kubernetes cluster using Ansible with k3s. The goal is easily install a Kubernetes cluster on machines running:
Expand Down Expand Up @@ -38,6 +40,9 @@ node
Start provisioning of the cluster using the following command:

```
ansible-playbook site.yaml
ansible-playbook site.yml
```

## Kubeconfig

To get access to your **Kubernetes** cluster just scp debian@master_pi:~/kube/config ~/.kube/config
27 changes: 22 additions & 5 deletions roles/k3s/master/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
state: restarted
enabled: yes

- name: Register file access mode
- name: Register node-token file access mode
stat:
path: /var/lib/rancher/k3s/server
register: p
Expand All @@ -26,18 +26,35 @@
path: /var/lib/rancher/k3s/server
mode: "g+rx,o+rx"

- name: Read Node Token from Master
- name: Read node-token from master
slurp:
src: /var/lib/rancher/k3s/server/node-token
register: node_token

- name: Store Master Token
- name: Store Master node-token
set_fact:
token: "{{ node_token.content | b64decode | regex_replace('\n', '') }}"

- name: Restore file access
- name: Restore node-token file access
file:
path: /var/lib/rancher/k3s/server
mode: "{{ p.stat.mode }}"

#- debug: msg="Node TOKEN {{ token }}"
- name: Create directory .kube
file:
path: /home/{{ ansible_user }}/.kube
state: directory
owner: "{{ ansible_user }}"

- name: Copy config file to user home directory
copy:
src: /etc/rancher/k3s/k3s.yaml
dest: /home/{{ ansible_user }}/.kube/config
remote_src: yes
owner: "{{ ansible_user }}"

- name: Replace https://localhost:6443 by https://master-pi:6443
replace:
path: /home/{{ ansible_user }}/.kube/config
regexp: 'https://localhost:6443'
replace: 'https://{{master_ip}}:6443'

0 comments on commit 4abaf35

Please sign in to comment.