Compare commits
31 Commits
ansible-utils
...
updates
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e0233d7bc | |||
| f892029fcf | |||
| 97843369b8 | |||
| 1b3a89606e | |||
| 6d1244c519 | |||
| 6a87b1cc46 | |||
| 6b37ba5e60 | |||
| b1fee44403 | |||
| a1c7175bd1 | |||
| 69d3bdcd88 | |||
| 5268ef305a | |||
| a840571733 | |||
| b1370406ea | |||
| 12d57a07d0 | |||
| 4f3b8ec9e0 | |||
| 45ddd65e74 | |||
| b2a62ea4eb | |||
| a8697edc99 | |||
| d3218f5d5c | |||
| 590a8029fd | |||
| cb2fa7c441 | |||
| 14508ec8dc | |||
| fb6c9a6866 | |||
| d5d02280c1 | |||
| 57e528832b | |||
| cd76fa05a7 | |||
| d5b37acd8a | |||
| 5225493ca0 | |||
| 4acbe91b6c | |||
| f1c2f3b7dd | |||
| 76718a010c |
@@ -12,3 +12,4 @@
|
|||||||
- [ ] Ran `reset.yml` playbook
|
- [ ] Ran `reset.yml` playbook
|
||||||
- [ ] Did not add any unnecessary changes
|
- [ ] Did not add any unnecessary changes
|
||||||
- [ ] 🚀
|
- [ ] 🚀
|
||||||
|
- [ ] Ran pre-commit install at least once before committing
|
||||||
|
|||||||
Executable
+37
@@ -0,0 +1,37 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# download-boxes.sh
|
||||||
|
# Check all molecule.yml files for required Vagrant boxes and download the ones that are not
|
||||||
|
# already present on the system.
|
||||||
|
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
GIT_ROOT=$(git rev-parse --show-toplevel)
|
||||||
|
PROVIDER=virtualbox
|
||||||
|
|
||||||
|
# Read all boxes for all platforms from the "molecule.yml" files
|
||||||
|
all_boxes=$(cat "${GIT_ROOT}"/molecule/*/molecule.yml |
|
||||||
|
yq -r '.platforms[].box' | # Read the "box" property of each node under "platforms"
|
||||||
|
grep --invert-match --regexp=--- | # Filter out file separators
|
||||||
|
sort |
|
||||||
|
uniq)
|
||||||
|
|
||||||
|
# Read the boxes that are currently present on the system (for the current provider)
|
||||||
|
present_boxes=$(
|
||||||
|
(vagrant box list |
|
||||||
|
grep "${PROVIDER}" | # Filter by boxes available for the current provider
|
||||||
|
awk '{print $1;}' | # The box name is the first word in each line
|
||||||
|
sort |
|
||||||
|
uniq) ||
|
||||||
|
echo "" # In case any of these commands fails, just use an empty list
|
||||||
|
)
|
||||||
|
|
||||||
|
# The boxes that we need to download are the ones present in $all_boxes, but not $present_boxes.
|
||||||
|
download_boxes=$(comm -2 -3 <(echo "${all_boxes}") <(echo "${present_boxes}"))
|
||||||
|
|
||||||
|
# Actually download the necessary boxes
|
||||||
|
if [ -n "${download_boxes}" ]; then
|
||||||
|
echo "${download_boxes}" | while IFS= read -r box; do
|
||||||
|
vagrant box add --provider "${PROVIDER}" "${box}"
|
||||||
|
done
|
||||||
|
fi
|
||||||
+56
-13
@@ -5,26 +5,69 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
paths-ignore:
|
||||||
|
- '**/README.md'
|
||||||
jobs:
|
jobs:
|
||||||
ansible-lint:
|
pre-commit-ci:
|
||||||
name: YAML Lint + Ansible Lint
|
name: Pre-Commit
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
PYTHON_VERSION: "3.10"
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase
|
- name: Check out the codebase
|
||||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
|
||||||
|
|
||||||
- name: Set up Python 3.x
|
|
||||||
uses: actions/setup-python@b55428b1882923874294fa556849718a1d7f2ca5 #4.0.2
|
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
|
||||||
- name: Install test dependencies
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
||||||
run: pip3 install yamllint ansible-lint ansible
|
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # 4.3.0
|
||||||
|
with:
|
||||||
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
|
cache: 'pip' # caching pip dependencies
|
||||||
|
|
||||||
- name: Run yamllint
|
- name: Cache pip
|
||||||
run: yamllint .
|
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11
|
||||||
|
with:
|
||||||
|
path: ~/.cache/pip
|
||||||
|
key: ${{ runner.os }}-pip-${{ hashFiles('./requirements.txt') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-pip-
|
||||||
|
|
||||||
- name: Run ansible-lint
|
- name: Cache Ansible
|
||||||
run: ansible-lint
|
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11
|
||||||
|
with:
|
||||||
|
path: ~/.ansible/collections
|
||||||
|
key: ${{ runner.os }}-ansible-${{ hashFiles('collections/requirements.txt') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-ansible-
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
echo "::group::Upgrade pip"
|
||||||
|
python3 -m pip install --upgrade pip
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Install Python requirements from requirements.txt"
|
||||||
|
python3 -m pip install -r requirements.txt
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Install Ansible role requirements from collections/requirements.yml"
|
||||||
|
ansible-galaxy install -r collections/requirements.yml
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
- name: Run pre-commit
|
||||||
|
uses: pre-commit/action@646c83fcd040023954eafda54b4db0192ce70507 # 3.0.0
|
||||||
|
|
||||||
|
ensure-pinned-actions:
|
||||||
|
name: Ensure SHA Pinned Actions
|
||||||
|
runs-on: self-hosted
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
|
||||||
|
- name: Ensure SHA pinned actions
|
||||||
|
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@6ca5574367befbc9efdb2fa25978084159c5902d # 1.3.0
|
||||||
|
with:
|
||||||
|
allowlist: |
|
||||||
|
aws-actions/
|
||||||
|
docker/login-action
|
||||||
|
|||||||
@@ -5,7 +5,8 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
paths-ignore:
|
||||||
|
- '**/README.md'
|
||||||
jobs:
|
jobs:
|
||||||
molecule:
|
molecule:
|
||||||
name: Molecule
|
name: Molecule
|
||||||
@@ -24,6 +25,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase
|
- name: Check out the codebase
|
||||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
|
||||||
|
with:
|
||||||
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
|
||||||
- name: Configure VirtualBox
|
- name: Configure VirtualBox
|
||||||
run: |-
|
run: |-
|
||||||
@@ -33,8 +36,16 @@ jobs:
|
|||||||
* fdad:bad:ba55::/64
|
* fdad:bad:ba55::/64
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
- name: Cache pip
|
||||||
|
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11
|
||||||
|
with:
|
||||||
|
path: ~/.cache/pip
|
||||||
|
key: ${{ runner.os }}-pip-${{ hashFiles('./requirements.txt') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-pip-
|
||||||
|
|
||||||
- name: Cache Vagrant boxes
|
- name: Cache Vagrant boxes
|
||||||
uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # 3.0.8
|
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.vagrant.d/boxes
|
~/.vagrant.d/boxes
|
||||||
@@ -42,15 +53,27 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
vagrant-boxes
|
vagrant-boxes
|
||||||
|
|
||||||
|
- name: Download Vagrant boxes for all scenarios
|
||||||
|
# To save some cache space, all scenarios share the same cache key.
|
||||||
|
# On the other hand, this means that the cache contents should be
|
||||||
|
# the same across all scenarios. This step ensures that.
|
||||||
|
run: ./.github/download-boxes.sh
|
||||||
|
|
||||||
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # 4.3.0
|
||||||
with:
|
with:
|
||||||
python-version: ${{ env.PYTHON_VERSION }}
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
|
cache: 'pip' # caching pip dependencies
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: >-
|
run: |
|
||||||
python3 -m pip install --upgrade pip &&
|
echo "::group::Upgrade pip"
|
||||||
|
python3 -m pip install --upgrade pip
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Install Python requirements from requirements.txt"
|
||||||
python3 -m pip install -r requirements.txt
|
python3 -m pip install -r requirements.txt
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Test with molecule
|
- name: Test with molecule
|
||||||
run: molecule test --scenario-name ${{ matrix.scenario }}
|
run: molecule test --scenario-name ${{ matrix.scenario }}
|
||||||
@@ -58,10 +81,12 @@ jobs:
|
|||||||
ANSIBLE_K3S_LOG_DIR: ${{ runner.temp }}/logs/k3s-ansible/${{ matrix.scenario }}
|
ANSIBLE_K3S_LOG_DIR: ${{ runner.temp }}/logs/k3s-ansible/${{ matrix.scenario }}
|
||||||
ANSIBLE_SSH_RETRIES: 4
|
ANSIBLE_SSH_RETRIES: 4
|
||||||
ANSIBLE_TIMEOUT: 60
|
ANSIBLE_TIMEOUT: 60
|
||||||
|
PY_COLORS: 1
|
||||||
|
ANSIBLE_FORCE_COLOR: 1
|
||||||
|
|
||||||
- name: Upload log files
|
- name: Upload log files
|
||||||
if: always() # do this even if a step before has failed
|
if: always() # do this even if a step before has failed
|
||||||
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # 3.1.0
|
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # 3.1.1
|
||||||
with:
|
with:
|
||||||
name: logs
|
name: logs
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
.env/
|
.env/
|
||||||
|
*.log
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: v4.3.0
|
||||||
|
hooks:
|
||||||
|
- id: requirements-txt-fixer
|
||||||
|
- id: sort-simple-yaml
|
||||||
|
- id: detect-private-key
|
||||||
|
- repo: https://github.com/adrienverge/yamllint.git
|
||||||
|
rev: v1.28.0
|
||||||
|
hooks:
|
||||||
|
- id: yamllint
|
||||||
|
args: [-c=.yamllint]
|
||||||
|
- repo: https://github.com/ansible-community/ansible-lint.git
|
||||||
|
rev: v6.8.2
|
||||||
|
hooks:
|
||||||
|
- id: ansible-lint
|
||||||
|
- repo: https://github.com/shellcheck-py/shellcheck-py
|
||||||
|
rev: v0.8.0.4
|
||||||
|
hooks:
|
||||||
|
- id: shellcheck
|
||||||
@@ -16,9 +16,9 @@ If you want more context on how this works, see:
|
|||||||
|
|
||||||
Build a Kubernetes cluster using Ansible with k3s. The goal is easily install a HA Kubernetes cluster on machines running:
|
Build a Kubernetes cluster using Ansible with k3s. The goal is easily install a HA Kubernetes cluster on machines running:
|
||||||
|
|
||||||
- [X] Debian
|
- [x] Debian (tested on version 11)
|
||||||
- [X] Ubuntu
|
- [x] Ubuntu (tested on version 22.04)
|
||||||
- [X] CentOS
|
- [x] Rocky (tested on version 9)
|
||||||
|
|
||||||
on processor architecture:
|
on processor architecture:
|
||||||
|
|
||||||
@@ -29,9 +29,13 @@ on processor architecture:
|
|||||||
## ✅ System requirements
|
## ✅ System requirements
|
||||||
|
|
||||||
- Deployment environment must have Ansible 2.4.0+. If you need a quick primer on Ansible [you can check out my docs and setting up Ansible](https://docs.technotim.live/posts/ansible-automation/).
|
- Deployment environment must have Ansible 2.4.0+. If you need a quick primer on Ansible [you can check out my docs and setting up Ansible](https://docs.technotim.live/posts/ansible-automation/).
|
||||||
Furthermore, the [`netaddr` package](https://pypi.org/project/netaddr/) must be available to Ansible. If you have installed Ansible via apt, this is already taken care of. If you have installed Ansible via `pip`, make sure to install `netaddr` into the respective virtual environment.
|
|
||||||
|
- [`netaddr` package](https://pypi.org/project/netaddr/) must be available to Ansible. If you have installed Ansible via apt, this is already taken care of. If you have installed Ansible via `pip`, make sure to install `netaddr` into the respective virtual environment.
|
||||||
|
|
||||||
- `server` and `agent` nodes should have passwordless SSH access, if not you can supply arguments to provide credentials `--ask-pass --ask-become-pass` to each command.
|
- `server` and `agent` nodes should have passwordless SSH access, if not you can supply arguments to provide credentials `--ask-pass --ask-become-pass` to each command.
|
||||||
|
|
||||||
|
- You will also need to install collections that this playbook uses by running `ansible-galaxy collection install -r ./collections/requirements.yml`
|
||||||
|
|
||||||
## 🚀 Getting Started
|
## 🚀 Getting Started
|
||||||
|
|
||||||
### 🍴 Preparation
|
### 🍴 Preparation
|
||||||
@@ -110,9 +114,7 @@ You can find more information about it [here](molecule/README.md).
|
|||||||
|
|
||||||
## Thanks 🤝
|
## Thanks 🤝
|
||||||
|
|
||||||
This repo is really standing on the shoulders of giants. To all those who have contributed.
|
This repo is really standing on the shoulders of giants. Thank you to all those who have contributed and tanks to these repos for code and ideas:
|
||||||
|
|
||||||
Thanks to these repos for code and ideas:
|
|
||||||
|
|
||||||
- [k3s-io/k3s-ansible](https://github.com/k3s-io/k3s-ansible)
|
- [k3s-io/k3s-ansible](https://github.com/k3s-io/k3s-ansible)
|
||||||
- [geerlingguy/turing-pi-cluster](https://github.com/geerlingguy/turing-pi-cluster)
|
- [geerlingguy/turing-pi-cluster](https://github.com/geerlingguy/turing-pi-cluster)
|
||||||
|
|||||||
+13
-2
@@ -2,11 +2,22 @@
|
|||||||
nocows = True
|
nocows = True
|
||||||
roles_path = ./roles
|
roles_path = ./roles
|
||||||
inventory = ./hosts.ini
|
inventory = ./hosts.ini
|
||||||
|
stdout_callback = yaml
|
||||||
|
|
||||||
remote_tmp = $HOME/.ansible/tmp
|
remote_tmp = $HOME/.ansible/tmp
|
||||||
local_tmp = $HOME/.ansible/tmp
|
local_tmp = $HOME/.ansible/tmp
|
||||||
pipelining = True
|
timeout = 60
|
||||||
become = True
|
|
||||||
host_key_checking = False
|
host_key_checking = False
|
||||||
deprecation_warnings = False
|
deprecation_warnings = False
|
||||||
callback_whitelist = profile_tasks
|
callback_whitelist = profile_tasks
|
||||||
|
log_path = ./ansible.log
|
||||||
|
|
||||||
|
[privilege_escalation]
|
||||||
|
become = True
|
||||||
|
|
||||||
|
[ssh_connection]
|
||||||
|
scp_if_ssh = smart
|
||||||
|
retries = 3
|
||||||
|
ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o Compression=yes -o ServerAliveInterval=15s
|
||||||
|
pipelining = True
|
||||||
|
control_path = %(directory)s/%%h-%%r
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
k3s_version: v1.24.4+k3s1
|
k3s_version: v1.24.7+k3s1
|
||||||
# this is the user that has ssh access to these machines
|
# this is the user that has ssh access to these machines
|
||||||
ansible_user: ansibleuser
|
ansible_user: ansibleuser
|
||||||
systemd_dir: /etc/systemd/system
|
systemd_dir: /etc/systemd/system
|
||||||
@@ -22,25 +22,30 @@ k3s_token: "some-SUPER-DEDEUPER-secret-password"
|
|||||||
# it for each of your hosts, though.
|
# it for each of your hosts, though.
|
||||||
k3s_node_ip: '{{ ansible_facts[flannel_iface]["ipv4"]["address"] }}'
|
k3s_node_ip: '{{ ansible_facts[flannel_iface]["ipv4"]["address"] }}'
|
||||||
|
|
||||||
|
# Disable the taint manually by setting: k3s_master_taint = false
|
||||||
|
k3s_master_taint: "{{ true if groups['node'] | default([]) | length >= 1 else false }}"
|
||||||
|
|
||||||
# these arguments are recommended for servers as well as agents:
|
# these arguments are recommended for servers as well as agents:
|
||||||
extra_args: >-
|
extra_args: >-
|
||||||
--flannel-iface={{ flannel_iface }}
|
--flannel-iface={{ flannel_iface }}
|
||||||
--node-ip={{ k3s_node_ip }}
|
--node-ip={{ k3s_node_ip }}
|
||||||
|
|
||||||
# change these to your liking, the only required one is --disable servicelb
|
# change these to your liking, the only required are: --disable servicelb, --tls-san {{ apiserver_endpoint }}
|
||||||
extra_server_args: >-
|
extra_server_args: >-
|
||||||
{{ extra_args }}
|
{{ extra_args }}
|
||||||
|
{{ '--node-taint node-role.kubernetes.io/master=true:NoSchedule' if k3s_master_taint else '' }}
|
||||||
|
--tls-san {{ apiserver_endpoint }}
|
||||||
--disable servicelb
|
--disable servicelb
|
||||||
--disable traefik
|
--disable traefik
|
||||||
extra_agent_args: >-
|
extra_agent_args: >-
|
||||||
{{ extra_args }}
|
{{ extra_args }}
|
||||||
|
|
||||||
# image tag for kube-vip
|
# image tag for kube-vip
|
||||||
kube_vip_tag_version: "v0.5.0"
|
kube_vip_tag_version: "v0.5.5"
|
||||||
|
|
||||||
# image tag for metal lb
|
# image tag for metal lb
|
||||||
metal_lb_speaker_tag_version: "v0.13.5"
|
metal_lb_speaker_tag_version: "v0.13.9"
|
||||||
metal_lb_controller_tag_version: "v0.13.5"
|
metal_lb_controller_tag_version: "v0.13.9"
|
||||||
|
|
||||||
# metallb ip range for load balancer
|
# metallb ip range for load balancer
|
||||||
metal_lb_ip_range: "192.168.30.80-192.168.30.90"
|
metal_lb_ip_range: "192.168.30.80-192.168.30.90"
|
||||||
|
|||||||
@@ -4,46 +4,72 @@ dependency:
|
|||||||
driver:
|
driver:
|
||||||
name: vagrant
|
name: vagrant
|
||||||
platforms:
|
platforms:
|
||||||
- &control
|
|
||||||
name: control1
|
- name: control1
|
||||||
box: generic/ubuntu2204
|
box: generic/ubuntu2204
|
||||||
memory: 2048
|
memory: 2048
|
||||||
cpus: 2
|
cpus: 2
|
||||||
config_options:
|
|
||||||
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
|
||||||
# see: https://github.com/chef/bento/issues/1405
|
|
||||||
ssh.username: "vagrant"
|
|
||||||
ssh.password: "vagrant"
|
|
||||||
groups:
|
groups:
|
||||||
- k3s_cluster
|
- k3s_cluster
|
||||||
- master
|
- master
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.38
|
ip: 192.168.30.38
|
||||||
- <<: *control
|
config_options:
|
||||||
name: control2
|
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
||||||
|
# see: https://github.com/chef/bento/issues/1405
|
||||||
|
ssh.username: "vagrant"
|
||||||
|
ssh.password: "vagrant"
|
||||||
|
|
||||||
|
- name: control2
|
||||||
|
box: generic/debian11
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- master
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.39
|
ip: 192.168.30.39
|
||||||
- <<: *control
|
|
||||||
name: control3
|
- name: control3
|
||||||
|
box: generic/rocky9
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- master
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.40
|
ip: 192.168.30.40
|
||||||
- &node
|
|
||||||
<<: *control
|
- name: node1
|
||||||
name: node1
|
box: generic/ubuntu2204
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
groups:
|
groups:
|
||||||
- k3s_cluster
|
- k3s_cluster
|
||||||
- node
|
- node
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.41
|
ip: 192.168.30.41
|
||||||
- <<: *node
|
config_options:
|
||||||
name: node2
|
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
||||||
|
# see: https://github.com/chef/bento/issues/1405
|
||||||
|
ssh.username: "vagrant"
|
||||||
|
ssh.password: "vagrant"
|
||||||
|
|
||||||
|
- name: node2
|
||||||
|
box: generic/rocky9
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- node
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: 192.168.30.42
|
ip: 192.168.30.42
|
||||||
|
|
||||||
provisioner:
|
provisioner:
|
||||||
name: ansible
|
name: ansible
|
||||||
playbooks:
|
playbooks:
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
- name: Apply overrides
|
||||||
|
ansible.builtin.import_playbook: >-
|
||||||
|
{{ lookup("ansible.builtin.env", "MOLECULE_SCENARIO_DIRECTORY") }}/overrides.yml
|
||||||
|
|
||||||
|
- name: Network setup
|
||||||
|
hosts: all
|
||||||
|
tasks:
|
||||||
|
- name: Disable firewalld
|
||||||
|
when: ansible_distribution == "Rocky"
|
||||||
|
# Rocky Linux comes with firewalld enabled. It blocks some of the network
|
||||||
|
# connections needed for our k3s cluster. For our test setup, we just disable
|
||||||
|
# it since the VM host's firewall is still active for connections to and from
|
||||||
|
# the Internet.
|
||||||
|
# When building your own cluster, please DO NOT blindly copy this. Instead,
|
||||||
|
# please create a custom firewall configuration that fits your network design
|
||||||
|
# and security needs.
|
||||||
|
ansible.builtin.systemd:
|
||||||
|
name: firewalld
|
||||||
|
enabled: no
|
||||||
|
state: stopped
|
||||||
|
become: true
|
||||||
@@ -4,30 +4,38 @@ dependency:
|
|||||||
driver:
|
driver:
|
||||||
name: vagrant
|
name: vagrant
|
||||||
platforms:
|
platforms:
|
||||||
- &control
|
|
||||||
name: control1
|
- name: control1
|
||||||
box: generic/ubuntu2204
|
box: generic/ubuntu2204
|
||||||
memory: 2048
|
memory: 2048
|
||||||
cpus: 2
|
cpus: 2
|
||||||
config_options:
|
|
||||||
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
|
||||||
# see: https://github.com/chef/bento/issues/1405
|
|
||||||
ssh.username: "vagrant"
|
|
||||||
ssh.password: "vagrant"
|
|
||||||
groups:
|
groups:
|
||||||
- k3s_cluster
|
- k3s_cluster
|
||||||
- master
|
- master
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: fdad:bad:ba55::de:11
|
ip: fdad:bad:ba55::de:11
|
||||||
- <<: *control
|
config_options:
|
||||||
name: node1
|
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
||||||
|
# see: https://github.com/chef/bento/issues/1405
|
||||||
|
ssh.username: "vagrant"
|
||||||
|
ssh.password: "vagrant"
|
||||||
|
|
||||||
|
- name: node1
|
||||||
|
box: generic/ubuntu2204
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
groups:
|
groups:
|
||||||
- k3s_cluster
|
- k3s_cluster
|
||||||
- node
|
- node
|
||||||
interfaces:
|
interfaces:
|
||||||
- network_name: private_network
|
- network_name: private_network
|
||||||
ip: fdad:bad:ba55::de:21
|
ip: fdad:bad:ba55::de:21
|
||||||
|
config_options:
|
||||||
|
# We currently can not use public-key based authentication on Ubuntu 22.04,
|
||||||
|
# see: https://github.com/chef/bento/issues/1405
|
||||||
|
ssh.username: "vagrant"
|
||||||
|
ssh.password: "vagrant"
|
||||||
provisioner:
|
provisioner:
|
||||||
name: ansible
|
name: ansible
|
||||||
playbooks:
|
playbooks:
|
||||||
|
|||||||
@@ -36,6 +36,8 @@
|
|||||||
# the default has IPv4 ranges only.
|
# the default has IPv4 ranges only.
|
||||||
extra_server_args: >-
|
extra_server_args: >-
|
||||||
{{ extra_args }}
|
{{ extra_args }}
|
||||||
|
--tls-san {{ apiserver_endpoint }}
|
||||||
|
{{ '--node-taint node-role.kubernetes.io/master=true:NoSchedule' if k3s_master_taint else '' }}
|
||||||
--disable servicelb
|
--disable servicelb
|
||||||
--disable traefik
|
--disable traefik
|
||||||
--disable-network-policy
|
--disable-network-policy
|
||||||
|
|||||||
@@ -3,10 +3,12 @@
|
|||||||
run_once: true
|
run_once: true
|
||||||
delegate_to: "{{ outside_host }}"
|
delegate_to: "{{ outside_host }}"
|
||||||
block:
|
block:
|
||||||
- ansible.builtin.import_tasks: kubecfg-fetch.yml
|
- name: "Test CASE: Get kube config"
|
||||||
|
ansible.builtin.import_tasks: kubecfg-fetch.yml
|
||||||
- name: "TEST CASE: Get nodes"
|
- name: "TEST CASE: Get nodes"
|
||||||
ansible.builtin.include_tasks: test/get-nodes.yml
|
ansible.builtin.include_tasks: test/get-nodes.yml
|
||||||
- name: "TEST CASE: Deploy example"
|
- name: "TEST CASE: Deploy example"
|
||||||
ansible.builtin.include_tasks: test/deploy-example.yml
|
ansible.builtin.include_tasks: test/deploy-example.yml
|
||||||
always:
|
always:
|
||||||
- ansible.builtin.import_tasks: kubecfg-cleanup.yml
|
- name: "TEST CASE: Cleanup"
|
||||||
|
ansible.builtin.import_tasks: kubecfg-cleanup.yml
|
||||||
|
|||||||
@@ -43,6 +43,10 @@
|
|||||||
{{ nginx_services.resources[0].status.loadBalancer.ingress[0].ip }}
|
{{ nginx_services.resources[0].status.loadBalancer.ingress[0].ip }}
|
||||||
port: >-
|
port: >-
|
||||||
{{ nginx_services.resources[0].spec.ports[0].port }}
|
{{ nginx_services.resources[0].spec.ports[0].port }}
|
||||||
|
# Deactivated linter rules:
|
||||||
|
# - jinja[invalid]: As of version 6.6.0, ansible-lint complains that the input to ipwrap
|
||||||
|
# would be undefined. This will not be the case during playbook execution.
|
||||||
|
# noqa jinja[invalid]
|
||||||
|
|
||||||
always:
|
always:
|
||||||
- name: "Remove namespace: {{ testing_namespace }}"
|
- name: "Remove namespace: {{ testing_namespace }}"
|
||||||
|
|||||||
@@ -22,3 +22,7 @@
|
|||||||
| unique
|
| unique
|
||||||
| sort
|
| sort
|
||||||
}}
|
}}
|
||||||
|
# Deactivated linter rules:
|
||||||
|
# - jinja[invalid]: As of version 6.6.0, ansible-lint complains that the input to ipwrap
|
||||||
|
# would be undefined. This will not be the case during playbook execution.
|
||||||
|
# noqa jinja[invalid]
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ansible-playbook reboot.yml -i inventory/my-cluster/hosts.ini
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
- name: Reboot k3s_cluster
|
||||||
|
hosts: k3s_cluster
|
||||||
|
gather_facts: yes
|
||||||
|
become: yes
|
||||||
|
tasks:
|
||||||
|
- name: Reboot the nodes (and Wait upto 5 mins max)
|
||||||
|
reboot:
|
||||||
|
reboot_timeout: 300
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
molecule>=4.0.3
|
||||||
|
ansible-core>=2.13.5
|
||||||
|
ansible-lint>=6.8.6
|
||||||
|
kubernetes>=25.3.0
|
||||||
|
molecule-vagrant>=1.0.0
|
||||||
|
molecule>=4.0.3
|
||||||
|
netaddr>=0.8.0
|
||||||
|
pyyaml>=6.0
|
||||||
|
yamllint>=1.28.0
|
||||||
|
jmespath>=1.0.1
|
||||||
|
jsonpatch>=1.32
|
||||||
|
pre-commit>=2.20.0
|
||||||
|
netaddr>=0.8.0
|
||||||
+222
-8
@@ -1,8 +1,222 @@
|
|||||||
ansible-core>=2.13.2
|
#
|
||||||
jmespath
|
# This file is autogenerated by pip-compile with python 3.8
|
||||||
jsonpatch
|
# To update, run:
|
||||||
kubernetes>=12.0.0
|
#
|
||||||
molecule-vagrant>=1.0.0
|
# pip-compile requirements.in
|
||||||
molecule>=4.0.1
|
#
|
||||||
netaddr>=0.8.0
|
ansible-compat==2.2.4
|
||||||
pyyaml>=3.11
|
# via
|
||||||
|
# ansible-lint
|
||||||
|
# molecule
|
||||||
|
ansible-core==2.13.5
|
||||||
|
# via
|
||||||
|
# -r requirements.in
|
||||||
|
# ansible-lint
|
||||||
|
ansible-lint==6.8.6
|
||||||
|
# via -r requirements.in
|
||||||
|
arrow==1.2.3
|
||||||
|
# via jinja2-time
|
||||||
|
attrs==22.1.0
|
||||||
|
# via jsonschema
|
||||||
|
binaryornot==0.4.4
|
||||||
|
# via cookiecutter
|
||||||
|
black==22.10.0
|
||||||
|
# via ansible-lint
|
||||||
|
bracex==2.3.post1
|
||||||
|
# via wcmatch
|
||||||
|
cachetools==5.2.0
|
||||||
|
# via google-auth
|
||||||
|
certifi==2022.9.24
|
||||||
|
# via
|
||||||
|
# kubernetes
|
||||||
|
# requests
|
||||||
|
cffi==1.15.1
|
||||||
|
# via cryptography
|
||||||
|
cfgv==3.3.1
|
||||||
|
# via pre-commit
|
||||||
|
chardet==5.0.0
|
||||||
|
# via binaryornot
|
||||||
|
charset-normalizer==2.1.1
|
||||||
|
# via requests
|
||||||
|
click==8.1.3
|
||||||
|
# via
|
||||||
|
# black
|
||||||
|
# click-help-colors
|
||||||
|
# cookiecutter
|
||||||
|
# molecule
|
||||||
|
click-help-colors==0.9.1
|
||||||
|
# via molecule
|
||||||
|
commonmark==0.9.1
|
||||||
|
# via rich
|
||||||
|
cookiecutter==2.1.1
|
||||||
|
# via molecule
|
||||||
|
cryptography==38.0.3
|
||||||
|
# via ansible-core
|
||||||
|
distlib==0.3.6
|
||||||
|
# via virtualenv
|
||||||
|
distro==1.8.0
|
||||||
|
# via selinux
|
||||||
|
enrich==1.2.7
|
||||||
|
# via molecule
|
||||||
|
filelock==3.8.0
|
||||||
|
# via
|
||||||
|
# ansible-lint
|
||||||
|
# virtualenv
|
||||||
|
google-auth==2.14.0
|
||||||
|
# via kubernetes
|
||||||
|
identify==2.5.8
|
||||||
|
# via pre-commit
|
||||||
|
idna==3.4
|
||||||
|
# via requests
|
||||||
|
importlib-resources==5.10.0
|
||||||
|
# via jsonschema
|
||||||
|
jinja2==3.1.2
|
||||||
|
# via
|
||||||
|
# ansible-core
|
||||||
|
# cookiecutter
|
||||||
|
# jinja2-time
|
||||||
|
# molecule
|
||||||
|
# molecule-vagrant
|
||||||
|
jinja2-time==0.2.0
|
||||||
|
# via cookiecutter
|
||||||
|
jmespath==1.0.1
|
||||||
|
# via -r requirements.in
|
||||||
|
jsonpatch==1.32
|
||||||
|
# via -r requirements.in
|
||||||
|
jsonpointer==2.3
|
||||||
|
# via jsonpatch
|
||||||
|
jsonschema==4.17.0
|
||||||
|
# via
|
||||||
|
# ansible-compat
|
||||||
|
# ansible-lint
|
||||||
|
# molecule
|
||||||
|
kubernetes==25.3.0
|
||||||
|
# via -r requirements.in
|
||||||
|
markupsafe==2.1.1
|
||||||
|
# via jinja2
|
||||||
|
molecule==4.0.3
|
||||||
|
# via
|
||||||
|
# -r requirements.in
|
||||||
|
# molecule-vagrant
|
||||||
|
molecule-vagrant==1.0.0
|
||||||
|
# via -r requirements.in
|
||||||
|
mypy-extensions==0.4.3
|
||||||
|
# via black
|
||||||
|
netaddr==0.8.0
|
||||||
|
# via -r requirements.in
|
||||||
|
nodeenv==1.7.0
|
||||||
|
# via pre-commit
|
||||||
|
oauthlib==3.2.2
|
||||||
|
# via requests-oauthlib
|
||||||
|
packaging==21.3
|
||||||
|
# via
|
||||||
|
# ansible-compat
|
||||||
|
# ansible-core
|
||||||
|
# ansible-lint
|
||||||
|
# molecule
|
||||||
|
pathspec==0.10.1
|
||||||
|
# via
|
||||||
|
# black
|
||||||
|
# yamllint
|
||||||
|
pkgutil-resolve-name==1.3.10
|
||||||
|
# via jsonschema
|
||||||
|
platformdirs==2.5.2
|
||||||
|
# via
|
||||||
|
# black
|
||||||
|
# virtualenv
|
||||||
|
pluggy==1.0.0
|
||||||
|
# via molecule
|
||||||
|
pre-commit==2.20.0
|
||||||
|
# via -r requirements.in
|
||||||
|
pyasn1==0.4.8
|
||||||
|
# via
|
||||||
|
# pyasn1-modules
|
||||||
|
# rsa
|
||||||
|
pyasn1-modules==0.2.8
|
||||||
|
# via google-auth
|
||||||
|
pycparser==2.21
|
||||||
|
# via cffi
|
||||||
|
pygments==2.13.0
|
||||||
|
# via rich
|
||||||
|
pyparsing==3.0.9
|
||||||
|
# via packaging
|
||||||
|
pyrsistent==0.19.2
|
||||||
|
# via jsonschema
|
||||||
|
python-dateutil==2.8.2
|
||||||
|
# via
|
||||||
|
# arrow
|
||||||
|
# kubernetes
|
||||||
|
python-slugify==6.1.2
|
||||||
|
# via cookiecutter
|
||||||
|
python-vagrant==1.0.0
|
||||||
|
# via molecule-vagrant
|
||||||
|
pyyaml==6.0
|
||||||
|
# via
|
||||||
|
# -r requirements.in
|
||||||
|
# ansible-compat
|
||||||
|
# ansible-core
|
||||||
|
# ansible-lint
|
||||||
|
# cookiecutter
|
||||||
|
# kubernetes
|
||||||
|
# molecule
|
||||||
|
# molecule-vagrant
|
||||||
|
# pre-commit
|
||||||
|
# yamllint
|
||||||
|
requests==2.28.1
|
||||||
|
# via
|
||||||
|
# cookiecutter
|
||||||
|
# kubernetes
|
||||||
|
# requests-oauthlib
|
||||||
|
requests-oauthlib==1.3.1
|
||||||
|
# via kubernetes
|
||||||
|
resolvelib==0.8.1
|
||||||
|
# via ansible-core
|
||||||
|
rich==12.6.0
|
||||||
|
# via
|
||||||
|
# ansible-lint
|
||||||
|
# enrich
|
||||||
|
# molecule
|
||||||
|
rsa==4.9
|
||||||
|
# via google-auth
|
||||||
|
ruamel-yaml==0.17.21
|
||||||
|
# via ansible-lint
|
||||||
|
ruamel-yaml-clib==0.2.7
|
||||||
|
# via ruamel-yaml
|
||||||
|
selinux==0.2.1
|
||||||
|
# via molecule-vagrant
|
||||||
|
six==1.16.0
|
||||||
|
# via
|
||||||
|
# google-auth
|
||||||
|
# kubernetes
|
||||||
|
# python-dateutil
|
||||||
|
subprocess-tee==0.3.5
|
||||||
|
# via ansible-compat
|
||||||
|
text-unidecode==1.3
|
||||||
|
# via python-slugify
|
||||||
|
toml==0.10.2
|
||||||
|
# via pre-commit
|
||||||
|
tomli==2.0.1
|
||||||
|
# via black
|
||||||
|
typing-extensions==4.4.0
|
||||||
|
# via
|
||||||
|
# black
|
||||||
|
# rich
|
||||||
|
urllib3==1.26.12
|
||||||
|
# via
|
||||||
|
# kubernetes
|
||||||
|
# requests
|
||||||
|
virtualenv==20.16.6
|
||||||
|
# via pre-commit
|
||||||
|
wcmatch==8.4.1
|
||||||
|
# via ansible-lint
|
||||||
|
websocket-client==1.4.2
|
||||||
|
# via kubernetes
|
||||||
|
yamllint==1.28.0
|
||||||
|
# via
|
||||||
|
# -r requirements.in
|
||||||
|
# ansible-lint
|
||||||
|
zipp==3.10.0
|
||||||
|
# via importlib-resources
|
||||||
|
|
||||||
|
# The following packages are considered to be unsafe in a requirements file:
|
||||||
|
# setuptools
|
||||||
|
|||||||
@@ -5,3 +5,9 @@
|
|||||||
become: yes
|
become: yes
|
||||||
roles:
|
roles:
|
||||||
- role: reset
|
- role: reset
|
||||||
|
- role: raspberrypi
|
||||||
|
vars: {state: absent}
|
||||||
|
post_tasks:
|
||||||
|
- name: Reboot and wait for node to come back up
|
||||||
|
reboot:
|
||||||
|
reboot_timeout: 3600
|
||||||
|
|||||||
@@ -152,12 +152,19 @@
|
|||||||
owner: "{{ ansible_user }}"
|
owner: "{{ ansible_user }}"
|
||||||
mode: "u=rw,g=,o="
|
mode: "u=rw,g=,o="
|
||||||
|
|
||||||
- name: Configure kubectl cluster to https://{{ apiserver_endpoint | ansible.utils.ipwrap }}:6443
|
- name: Configure kubectl cluster to {{ endpoint_url }}
|
||||||
command: >-
|
command: >-
|
||||||
k3s kubectl config set-cluster default
|
k3s kubectl config set-cluster default
|
||||||
--server=https://{{ apiserver_endpoint | ansible.utils.ipwrap }}:6443
|
--server={{ endpoint_url }}
|
||||||
--kubeconfig ~{{ ansible_user }}/.kube/config
|
--kubeconfig ~{{ ansible_user }}/.kube/config
|
||||||
changed_when: true
|
changed_when: true
|
||||||
|
vars:
|
||||||
|
endpoint_url: >-
|
||||||
|
https://{{ apiserver_endpoint | ansible.utils.ipwrap }}:6443
|
||||||
|
# Deactivated linter rules:
|
||||||
|
# - jinja[invalid]: As of version 6.6.0, ansible-lint complains that the input to ipwrap
|
||||||
|
# would be undefined. This will not be the case during playbook execution.
|
||||||
|
# noqa jinja[invalid]
|
||||||
|
|
||||||
- name: Create kubectl symlink
|
- name: Create kubectl symlink
|
||||||
file:
|
file:
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
---
|
---
|
||||||
# Timeout to wait for MetalLB services to come up
|
# Timeout to wait for MetalLB services to come up
|
||||||
metal_lb_available_timeout: 60s
|
metal_lb_available_timeout: 120s
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
# Indicates whether the k3s prerequisites for Raspberry Pi should be set up
|
||||||
|
# Possible values:
|
||||||
|
# - present
|
||||||
|
# - absent
|
||||||
|
state: present
|
||||||
@@ -47,13 +47,20 @@
|
|||||||
- raspberry_pi|default(false)
|
- raspberry_pi|default(false)
|
||||||
- ansible_facts.lsb.description|default("") is match("Debian.*bullseye")
|
- ansible_facts.lsb.description|default("") is match("Debian.*bullseye")
|
||||||
|
|
||||||
- name: execute OS related tasks on the Raspberry Pi
|
- name: execute OS related tasks on the Raspberry Pi - {{ action }}
|
||||||
include_tasks: "{{ item }}"
|
include_tasks: "{{ item }}"
|
||||||
with_first_found:
|
with_first_found:
|
||||||
- "prereq/{{ detected_distribution }}-{{ detected_distribution_major_version }}.yml"
|
- "{{ action }}/{{ detected_distribution }}-{{ detected_distribution_major_version }}.yml"
|
||||||
- "prereq/{{ detected_distribution }}.yml"
|
- "{{ action }}/{{ detected_distribution }}.yml"
|
||||||
- "prereq/{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
|
- "{{ action }}/{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
|
||||||
- "prereq/{{ ansible_distribution }}.yml"
|
- "{{ action }}/{{ ansible_distribution }}.yml"
|
||||||
- "prereq/default.yml"
|
- "{{ action }}/default.yml"
|
||||||
|
vars:
|
||||||
|
action: >-
|
||||||
|
{% if state == "present" -%}
|
||||||
|
setup
|
||||||
|
{%- else -%}
|
||||||
|
teardown
|
||||||
|
{%- endif %}
|
||||||
when:
|
when:
|
||||||
- raspberry_pi|default(false)
|
- raspberry_pi|default(false)
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
- name: Enable cgroup via boot commandline if not already enabled for Centos
|
- name: Enable cgroup via boot commandline if not already enabled for Rocky
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: /boot/cmdline.txt
|
path: /boot/cmdline.txt
|
||||||
backrefs: yes
|
backrefs: yes
|
||||||
+3
-3
@@ -6,8 +6,8 @@
|
|||||||
regexp: '^((?!.*\bcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory\b).*)$'
|
regexp: '^((?!.*\bcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory\b).*)$'
|
||||||
line: '\1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory'
|
line: '\1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory'
|
||||||
notify: reboot
|
notify: reboot
|
||||||
when: not ansible_check_mode
|
|
||||||
|
|
||||||
- name: Install linux-modules-extra-raspi
|
- name: Install linux-modules-extra-raspi
|
||||||
apt: name=linux-modules-extra-raspi state=present
|
apt:
|
||||||
when: (raspberry_pi) and (not ansible_check_mode)
|
name: linux-modules-extra-raspi
|
||||||
|
state: present
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
---
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
---
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: Remove linux-modules-extra-raspi
|
||||||
|
apt:
|
||||||
|
name: linux-modules-extra-raspi
|
||||||
|
state: absent
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
---
|
||||||
@@ -50,14 +50,7 @@
|
|||||||
systemd:
|
systemd:
|
||||||
daemon_reload: yes
|
daemon_reload: yes
|
||||||
|
|
||||||
- name: Remove linux-modules-extra-raspi
|
- name: Remove tmp directory used for manifests
|
||||||
apt: name=linux-modules-extra-raspi state=absent
|
|
||||||
|
|
||||||
- name: Remove tmp director used for manifests
|
|
||||||
file:
|
file:
|
||||||
path: /tmp/k3s
|
path: /tmp/k3s
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: Reboot and wait for node to come back up
|
|
||||||
reboot:
|
|
||||||
reboot_timeout: 3600
|
|
||||||
|
|||||||
Reference in New Issue
Block a user