mirror of
https://github.com/PyratLabs/ansible-role-k3s.git
synced 2025-01-07 19:17:48 +01:00
Merge branch 'feature-symlink_to_hardlink_release' into release-hardlink_check_mode
This commit is contained in:
commit
d8a348923a
43
README.md
43
README.md
@ -50,6 +50,7 @@ consistency.
|
||||
| `k3s_build_cluster` | When multiple `play_hosts` are available, attempt to cluster. Read notes below. | `true` |
|
||||
| `k3s_github_url` | Set the GitHub URL to install k3s from. | https://github.com/rancher/k3s |
|
||||
| `k3s_install_dir` | Installation directory for k3s. | `/usr/local/bin` |
|
||||
| `k3s_install_hard_links` | Install using hard links rather than symbolic links. | `false` |
|
||||
| `k3s_server_manifests_dir` | Path for place the `k3s_server_manifests_templates`. | `/var/lib/rancher/k3s/server/manifests` |
|
||||
| `k3s_server_manifests_templates` | A list of Auto-Deploying Manifests Templates. | [] |
|
||||
| `k3s_use_experimental` | Allow the use of experimental features in k3s. | `false` |
|
||||
@ -117,6 +118,48 @@ k3s_release_version: v1.18 # latest v1.18 release
|
||||
k3s_release_version: v1.17-testing # latest v1.17 testing release
|
||||
```
|
||||
|
||||
#### Important node about `k3s_install_hard_links`
|
||||
|
||||
If you are using the [system-upgrade-controller](https://github.com/rancher/system-upgrade-controller)
|
||||
you will need to use hard links rather than symbolic links as the controller
|
||||
will not be able to follow symbolic links. This option has been added however
|
||||
is not enabled by default to avoid breaking existing installations.
|
||||
|
||||
To enable the use of hard links, ensure `k3s_install_hard_links` is set
|
||||
to `true`.
|
||||
|
||||
```yaml
|
||||
k3s_install_hard_links: true
|
||||
```
|
||||
|
||||
The result of this can be seen by running the following in `k3s_install_dir`:
|
||||
|
||||
`ls -larthi | grep -E 'k3s|ctr|ctl' | grep -vE ".sh$" | sort`
|
||||
|
||||
Symbolic Links:
|
||||
|
||||
```text
|
||||
[root@node1 bin]# ls -larthi | grep -E 'k3s|ctr|ctl' | grep -vE ".sh$" | sort
|
||||
3277823 -rwxr-xr-x 1 root root 52M Jul 25 12:50 k3s-v1.18.4+k3s1
|
||||
3279565 lrwxrwxrwx 1 root root 31 Jul 25 12:52 k3s -> /usr/local/bin/k3s-v1.18.6+k3s1
|
||||
3279644 -rwxr-xr-x 1 root root 51M Jul 25 12:52 k3s-v1.18.6+k3s1
|
||||
3280079 lrwxrwxrwx 1 root root 31 Jul 25 12:52 ctr -> /usr/local/bin/k3s-v1.18.6+k3s1
|
||||
3280080 lrwxrwxrwx 1 root root 31 Jul 25 12:52 crictl -> /usr/local/bin/k3s-v1.18.6+k3s1
|
||||
3280081 lrwxrwxrwx 1 root root 31 Jul 25 12:52 kubectl -> /usr/local/bin/k3s-v1.18.6+k3s1
|
||||
```
|
||||
|
||||
Hard Links:
|
||||
|
||||
```text
|
||||
[root@node1 bin]# ls -larthi | grep -E 'k3s|ctr|ctl' | grep -vE ".sh$" | sort
|
||||
3277823 -rwxr-xr-x 1 root root 52M Jul 25 12:50 k3s-v1.18.4+k3s1
|
||||
3279644 -rwxr-xr-x 5 root root 51M Jul 25 12:52 crictl
|
||||
3279644 -rwxr-xr-x 5 root root 51M Jul 25 12:52 ctr
|
||||
3279644 -rwxr-xr-x 5 root root 51M Jul 25 12:52 k3s
|
||||
3279644 -rwxr-xr-x 5 root root 51M Jul 25 12:52 k3s-v1.18.6+k3s1
|
||||
3279644 -rwxr-xr-x 5 root root 51M Jul 25 12:52 kubectl
|
||||
```
|
||||
|
||||
#### Important note about `k3s_build_cluster`
|
||||
|
||||
If you set `k3s_build_cluster` to `false`, this role will install each play
|
||||
|
@ -19,6 +19,9 @@ k3s_github_url: https://github.com/rancher/k3s
|
||||
# Installation directory for k3s
|
||||
k3s_install_dir: /usr/local/bin
|
||||
|
||||
# Install using hard links rather than symbolic links
|
||||
k3s_install_hard_links: false
|
||||
|
||||
# Path for additional Kubernetes Manifests
|
||||
# https://rancher.com/docs/k3s/latest/en/advanced/#auto-deploying-manifests
|
||||
k3s_server_manifests_dir: /var/lib/rancher/k3s/server/manifests
|
||||
|
@ -4,5 +4,7 @@
|
||||
become: true
|
||||
vars:
|
||||
molecule_is_test: true
|
||||
k3s_release_version: v1.18.6+k3s1
|
||||
k3s_install_hard_links: true
|
||||
roles:
|
||||
- role: xanmanning.k3s
|
||||
|
@ -1,10 +1,11 @@
|
||||
---
|
||||
|
||||
- name: Ensure k3s is symlinked into the installation destination on the contol plane
|
||||
- name: Ensure k3s is linked into the installation destination on the contol plane
|
||||
file:
|
||||
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
||||
dest: "{{ k3s_install_dir }}/k3s"
|
||||
state: link
|
||||
state: "{{ 'hard' if k3s_install_hard_links else 'link' }}"
|
||||
force: "{{ k3s_install_hard_links }}"
|
||||
when: (k3s_control_node and k3s_controller_count | length == 1)
|
||||
or (k3s_primary_control_node and k3s_controller_count | length > 1)
|
||||
notify:
|
||||
@ -44,11 +45,12 @@
|
||||
mode: 0700
|
||||
become: "{{ k3s_become_for_usr_local_bin | ternary(true, false, k3s_become_for_all) }}"
|
||||
|
||||
- name: Ensure k3s is symlinked into the installation destinations across all nodes
|
||||
- name: Ensure k3s is linked into the installation destinations across all nodes
|
||||
file:
|
||||
src: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
||||
dest: "{{ k3s_install_dir }}/{{ item }}"
|
||||
state: link
|
||||
state: "{{ 'hard' if k3s_install_hard_links else 'link' }}"
|
||||
force: "{{ k3s_install_hard_links }}"
|
||||
notify:
|
||||
- restart k3s
|
||||
loop:
|
||||
|
@ -30,8 +30,11 @@ K3SSVC=$(ls /etc/systemd/system/k3s*.service || true)
|
||||
|
||||
if [[ "${K3SSVC}" != "" ]] ; then
|
||||
for unit in /etc/systemd/system/k3s*.service ; do
|
||||
unit_name="$(basename "${unit}")"
|
||||
systemctl stop "${unit_name}"
|
||||
[ -f "${unit}" ] && rm -f "${unit}"
|
||||
done
|
||||
systemctl daemon-reload
|
||||
fi
|
||||
|
||||
K3SINIT=$(ls /etc/init.d/k3s* || true)
|
||||
@ -42,17 +45,17 @@ if [[ "${K3SINIT}" != "" ]] ; then
|
||||
fi
|
||||
|
||||
for cmd in {kubectl,crictl,ctr} ; do
|
||||
if [ -L "{{ k3s_install_dir }}/${cmd}" ]; then
|
||||
if [ -f "{{ k3s_install_dir }}/${cmd}" ]; then
|
||||
rm -f "{{ k3s_install_dir }}/${cmd}"
|
||||
fi
|
||||
done
|
||||
|
||||
for bin in {{ k3s_install_dir }}/k3s*; do
|
||||
[ -f "${bin}" ] && rm -f "${bin}"
|
||||
done
|
||||
|
||||
[ -d /etc/rancher/k3s ] && rm -rf /etc/rancher/k3s
|
||||
[ -d /var/lib/rancher/k3s ] && rm -rf /var/lib/rancher/k3s
|
||||
[ -d /var/lib/kubelet ] && rm -rf /var/lib/kubelet
|
||||
|
||||
for bin in {{ k3s_install_dir }}/k3s*; do
|
||||
[ -f "${bin}" ] && rm -f "${bin}"
|
||||
done
|
||||
|
||||
[ -f /usr/local/bin/k3s-killall.sh ] && rm -f /usr/local/bin/k3s-killall.sh
|
||||
|
Loading…
Reference in New Issue
Block a user