mirror of
https://github.com/techno-tim/k3s-ansible.git
synced 2025-12-25 18:23:05 +01:00
Compare commits
43 Commits
v1.24.4+k3
...
v1.24.8+k3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6cf14ea78 | ||
|
|
da049dcc28 | ||
|
|
2604caa483 | ||
|
|
82d820805f | ||
|
|
da72884a5b | ||
|
|
17a74b66c8 | ||
|
|
88d679ecb6 | ||
|
|
6bf3bcce92 | ||
|
|
cff815a031 | ||
|
|
f892029fcf | ||
|
|
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 | ||
|
|
a1ef590442 | ||
|
|
9ff3bb6b87 | ||
|
|
b1df9663fa | ||
|
|
58c3a61bbb | ||
|
|
60bc09b085 | ||
|
|
4365a2a54b | ||
|
|
a6b2a95b7e | ||
|
|
3c36dc8bfd |
@@ -1,3 +1,17 @@
|
|||||||
---
|
---
|
||||||
|
exclude_paths:
|
||||||
|
# default paths
|
||||||
|
- '.cache/'
|
||||||
|
- '.github/'
|
||||||
|
- 'test/fixtures/formatting-before/'
|
||||||
|
- 'test/fixtures/formatting-prettier/'
|
||||||
|
|
||||||
|
# The "converge" and "reset" playbooks use import_playbook in
|
||||||
|
# conjunction with the "env" lookup plugin, which lets the
|
||||||
|
# syntax check of ansible-lint fail.
|
||||||
|
- 'molecule/**/converge.yml'
|
||||||
|
- 'molecule/**/prepare.yml'
|
||||||
|
- 'molecule/**/reset.yml'
|
||||||
|
|
||||||
skip_list:
|
skip_list:
|
||||||
- 'fqcn-builtins'
|
- 'fqcn-builtins'
|
||||||
|
|||||||
13
.editorconfig
Normal file
13
.editorconfig
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
root = true
|
||||||
|
[*]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
end_of_line = lf
|
||||||
|
max_line_length = off
|
||||||
|
[Makefile]
|
||||||
|
indent_style = tab
|
||||||
|
[*.go]
|
||||||
|
indent_style = tab
|
||||||
1
.github/PULL_REQUEST_TEMPLATE.md
vendored
1
.github/PULL_REQUEST_TEMPLATE.md
vendored
@@ -11,4 +11,5 @@
|
|||||||
- [ ] Ran `site.yml` playbook
|
- [ ] Ran `site.yml` playbook
|
||||||
- [ ] 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
|
||||||
- [ ] 🚀
|
- [ ] 🚀
|
||||||
|
|||||||
37
.github/download-boxes.sh
vendored
Executable file
37
.github/download-boxes.sh
vendored
Executable file
@@ -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
|
||||||
15
.github/workflows/ci.yml
vendored
Normal file
15
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
name: "CI"
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
paths-ignore:
|
||||||
|
- '**/README.md'
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
uses: ./.github/workflows/lint.yml
|
||||||
|
test:
|
||||||
|
uses: ./.github/workflows/test.yml
|
||||||
|
needs: [lint]
|
||||||
74
.github/workflows/lint.yml
vendored
74
.github/workflows/lint.yml
vendored
@@ -1,30 +1,68 @@
|
|||||||
---
|
---
|
||||||
name: Linting
|
name: Linting
|
||||||
on:
|
on:
|
||||||
pull_request:
|
workflow_call:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
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@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v3 2.5.0
|
||||||
|
|
||||||
- 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@75f3110429a8c05be0e1bf360334e4cced2b63fa # 2.3.3
|
||||||
|
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: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v3 2.5.0
|
||||||
|
- name: Ensure SHA pinned actions
|
||||||
|
uses: zgosalvez/github-actions-ensure-sha-pinned-actions@af2eb3226618e2494e3d9084f515ad6dcf16e229 # 2.0.1
|
||||||
|
with:
|
||||||
|
allowlist: |
|
||||||
|
aws-actions/
|
||||||
|
docker/login-action
|
||||||
|
|||||||
110
.github/workflows/test.yml
vendored
110
.github/workflows/test.yml
vendored
@@ -1,69 +1,91 @@
|
|||||||
---
|
---
|
||||||
name: Test
|
name: Test
|
||||||
on:
|
on:
|
||||||
pull_request:
|
workflow_call:
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
vagrant:
|
molecule:
|
||||||
name: Vagrant
|
name: Molecule
|
||||||
runs-on: macos-12
|
runs-on: macos-12
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
scenario:
|
||||||
|
- default
|
||||||
|
- ipv6
|
||||||
|
- single_node
|
||||||
|
fail-fast: false
|
||||||
env:
|
env:
|
||||||
HOMEBREW_NO_INSTALL_CLEANUP: 1
|
PYTHON_VERSION: "3.10"
|
||||||
VAGRANT_CWD: ${{ github.workspace }}/vagrant
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase
|
- name: Check out the codebase
|
||||||
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # 3.0.2
|
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v3 2.5.0
|
||||||
|
with:
|
||||||
- name: Install Ansible
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
run: brew install ansible
|
|
||||||
|
|
||||||
- name: Install role dependencies
|
|
||||||
run: ansible-galaxy install -r collections/requirements.yml
|
|
||||||
|
|
||||||
- name: Configure VirtualBox
|
- name: Configure VirtualBox
|
||||||
run: >-
|
run: |-
|
||||||
sudo mkdir -p /etc/vbox &&
|
sudo mkdir -p /etc/vbox
|
||||||
echo "* 192.168.30.0/24" | sudo tee -a /etc/vbox/networks.conf > /dev/null
|
cat <<EOF | sudo tee -a /etc/vbox/networks.conf > /dev/null
|
||||||
|
* 192.168.30.0/24
|
||||||
|
* fdad:bad:ba55::/64
|
||||||
|
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
|
||||||
key: vagrant-boxes-${{ hashFiles('**/Vagrantfile') }}
|
key: vagrant-boxes-${{ hashFiles('**/molecule.yml') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
vagrant-boxes
|
vagrant-boxes
|
||||||
|
|
||||||
- name: Create virtual machines
|
- name: Download Vagrant boxes for all scenarios
|
||||||
run: vagrant up
|
# To save some cache space, all scenarios share the same cache key.
|
||||||
timeout-minutes: 10
|
# 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: Provision cluster using Ansible
|
- name: Set up Python ${{ env.PYTHON_VERSION }}
|
||||||
# Since Ansible sets up _all_ machines, it is sufficient to run it only
|
uses: actions/setup-python@75f3110429a8c05be0e1bf360334e4cced2b63fa # 2.3.3
|
||||||
# once (i.e, for a single node - we are choosing control1 here)
|
with:
|
||||||
run: vagrant provision control1 --provision-with ansible
|
python-version: ${{ env.PYTHON_VERSION }}
|
||||||
timeout-minutes: 25
|
cache: 'pip' # caching pip dependencies
|
||||||
|
|
||||||
- name: Set up kubectl on the host
|
- name: Install dependencies
|
||||||
run: brew install kubectl &&
|
run: |
|
||||||
mkdir -p ~/.kube &&
|
echo "::group::Upgrade pip"
|
||||||
vagrant ssh control1 --command "cat ~/.kube/config" > ~/.kube/config
|
python3 -m pip install --upgrade pip
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Show cluster nodes
|
echo "::group::Install Python requirements from requirements.txt"
|
||||||
run: kubectl describe -A nodes
|
python3 -m pip install -r requirements.txt
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Show cluster pods
|
- name: Test with molecule
|
||||||
run: kubectl describe -A pods
|
run: molecule test --scenario-name ${{ matrix.scenario }}
|
||||||
|
env:
|
||||||
|
ANSIBLE_K3S_LOG_DIR: ${{ runner.temp }}/logs/k3s-ansible/${{ matrix.scenario }}
|
||||||
|
ANSIBLE_SSH_RETRIES: 4
|
||||||
|
ANSIBLE_TIMEOUT: 60
|
||||||
|
PY_COLORS: 1
|
||||||
|
ANSIBLE_FORCE_COLOR: 1
|
||||||
|
|
||||||
- name: Test cluster
|
- name: Upload log files
|
||||||
run: $VAGRANT_CWD/test_cluster.py --verbose --locals
|
|
||||||
timeout-minutes: 5
|
|
||||||
|
|
||||||
- name: Destroy virtual machines
|
|
||||||
if: always() # do this even if a step before has failed
|
if: always() # do this even if a step before has failed
|
||||||
run: vagrant destroy --force
|
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb # 3.1.1
|
||||||
|
with:
|
||||||
|
name: logs
|
||||||
|
path: |
|
||||||
|
${{ runner.temp }}/logs
|
||||||
|
|
||||||
|
- name: Delete old box versions
|
||||||
|
if: always() # do this even if a step before has failed
|
||||||
|
run: vagrant box prune --force
|
||||||
|
|||||||
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
.vagrant
|
.env/
|
||||||
|
*.log
|
||||||
|
|||||||
35
.pre-commit-config.yaml
Normal file
35
.pre-commit-config.yaml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: 3298ddab3c13dd77d6ce1fc0baf97691430d84b0 # v4.3.0
|
||||||
|
hooks:
|
||||||
|
- id: requirements-txt-fixer
|
||||||
|
- id: sort-simple-yaml
|
||||||
|
- id: detect-private-key
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- id: end-of-file-fixer
|
||||||
|
- id: mixed-line-ending
|
||||||
|
- id: trailing-whitespace
|
||||||
|
args: [--markdown-linebreak-ext=md]
|
||||||
|
- repo: https://github.com/adrienverge/yamllint.git
|
||||||
|
rev: 9cce2940414e9560ae4c8518ddaee2ac1863a4d2 # v1.28.0
|
||||||
|
hooks:
|
||||||
|
- id: yamllint
|
||||||
|
args: [-c=.yamllint]
|
||||||
|
- repo: https://github.com/ansible-community/ansible-lint.git
|
||||||
|
rev: a058554b9bcf88f12ad09ab9fb93b267a214368f # v6.8.6
|
||||||
|
hooks:
|
||||||
|
- id: ansible-lint
|
||||||
|
- repo: https://github.com/shellcheck-py/shellcheck-py
|
||||||
|
rev: 4c7c3dd7161ef39e984cb295e93a968236dc8e8a # v0.8.0.4
|
||||||
|
hooks:
|
||||||
|
- id: shellcheck
|
||||||
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
||||||
|
rev: 04618e68aa2380828a36a23ff5f65a06ae8f59b9 # v1.3.1
|
||||||
|
hooks:
|
||||||
|
- id: remove-crlf
|
||||||
|
- id: remove-tabs
|
||||||
|
- repo: https://github.com/sirosen/texthooks
|
||||||
|
rev: 30d9af95631de0d7cff4e282bde9160d38bb0359 # 0.4.0
|
||||||
|
hooks:
|
||||||
|
- id: fix-smartquotes
|
||||||
31
README.md
31
README.md
@@ -10,15 +10,15 @@ If you want more context on how this works, see:
|
|||||||
|
|
||||||
📄 [Documentation](https://docs.technotim.live/posts/k3s-etcd-ansible/) (including example commands)
|
📄 [Documentation](https://docs.technotim.live/posts/k3s-etcd-ansible/) (including example commands)
|
||||||
|
|
||||||
📺 [Video](https://www.youtube.com/watch?v=CbkEWcUZ7zM)
|
📺 [Watch the Video](https://www.youtube.com/watch?v=CbkEWcUZ7zM)
|
||||||
|
|
||||||
## 📖 k3s Ansible Playbook
|
## 📖 k3s Ansible Playbook
|
||||||
|
|
||||||
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,6 +29,11 @@ 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/).
|
||||||
|
|
||||||
|
- You will also need to install collections that this playbook uses by running `ansible-galaxy collection install -r ./collections/requirements.yml` (important❗)
|
||||||
|
|
||||||
|
- [`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.
|
||||||
|
|
||||||
## 🚀 Getting Started
|
## 🚀 Getting Started
|
||||||
@@ -100,18 +105,20 @@ See the commands [here](https://docs.technotim.live/posts/k3s-etcd-ansible/#test
|
|||||||
|
|
||||||
Be sure to see [this post](https://github.com/techno-tim/k3s-ansible/discussions/20) on how to troubleshoot common problems
|
Be sure to see [this post](https://github.com/techno-tim/k3s-ansible/discussions/20) on how to troubleshoot common problems
|
||||||
|
|
||||||
### 🔷 Vagrant
|
### Testing the playbook using molecule
|
||||||
|
|
||||||
You may want to kickstart your k3s cluster by using Vagrant to quickly build you all needed VMs with one command.
|
This playbook includes a [molecule](https://molecule.rtfd.io/)-based test setup.
|
||||||
Head to the `vagrant` subfolder and type `vagrant up` to get your environment setup.
|
It is run automatically in CI, but you can also run the tests locally.
|
||||||
After the VMs have got build, deploy k3s using the Ansible playbook `site.yml` by the
|
This might be helpful for quick feedback in a few cases.
|
||||||
`vagrant provision --provision-with ansible` command.
|
You can find more information about it [here](molecule/README.md).
|
||||||
|
|
||||||
|
### Pre-commit Hooks
|
||||||
|
|
||||||
|
This repo uses `pre-commit` and `pre-commit-hooks` to lint and fix common style and syntax errors. Be sure to install python packages and then run `pre-commit install`. For more information, see [pre-commit](https://pre-commit.com/)
|
||||||
|
|
||||||
## 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 thanks 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)
|
||||||
|
|||||||
17
ansible.cfg
17
ansible.cfg
@@ -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
|
callbacks_enabled = 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,4 +1,6 @@
|
|||||||
---
|
---
|
||||||
collections:
|
collections:
|
||||||
|
- name: ansible.utils
|
||||||
- name: community.general
|
- name: community.general
|
||||||
- name: ansible.posix
|
- name: ansible.posix
|
||||||
|
- name: kubernetes.core
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ kind: Service
|
|||||||
metadata:
|
metadata:
|
||||||
name: nginx
|
name: nginx
|
||||||
spec:
|
spec:
|
||||||
|
ipFamilyPolicy: PreferDualStack
|
||||||
selector:
|
selector:
|
||||||
app: nginx
|
app: nginx
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
k3s_version: v1.24.4+k3s1
|
k3s_version: v1.24.8+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
|
||||||
@@ -17,16 +17,35 @@ apiserver_endpoint: "192.168.30.222"
|
|||||||
# this token should be alpha numeric only
|
# this token should be alpha numeric only
|
||||||
k3s_token: "some-SUPER-DEDEUPER-secret-password"
|
k3s_token: "some-SUPER-DEDEUPER-secret-password"
|
||||||
|
|
||||||
# change these to your liking, the only required one is--disable servicelb
|
# The IP on which the node is reachable in the cluster.
|
||||||
extra_server_args: "--disable servicelb --disable traefik"
|
# Here, a sensible default is provided, you can still override
|
||||||
extra_agent_args: ""
|
# it for each of your hosts, though.
|
||||||
|
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:
|
||||||
|
extra_args: >-
|
||||||
|
--flannel-iface={{ flannel_iface }}
|
||||||
|
--node-ip={{ k3s_node_ip }}
|
||||||
|
|
||||||
|
# change these to your liking, the only required are: --disable servicelb, --tls-san {{ apiserver_endpoint }}
|
||||||
|
extra_server_args: >-
|
||||||
|
{{ extra_args }}
|
||||||
|
{{ '--node-taint node-role.kubernetes.io/master=true:NoSchedule' if k3s_master_taint else '' }}
|
||||||
|
--tls-san {{ apiserver_endpoint }}
|
||||||
|
--disable servicelb
|
||||||
|
--disable traefik
|
||||||
|
extra_agent_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.7"
|
||||||
|
|
||||||
# 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.7"
|
||||||
metal_lb_controller_tag_version: "v0.13.5"
|
metal_lb_controller_tag_version: "v0.13.7"
|
||||||
|
|
||||||
# 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"
|
||||||
|
|||||||
73
molecule/README.md
Normal file
73
molecule/README.md
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
# Test suites for `k3s-ansible`
|
||||||
|
|
||||||
|
This folder contains the [molecule](https://molecule.rtfd.io/)-based test setup for this playbook.
|
||||||
|
|
||||||
|
## Scenarios
|
||||||
|
|
||||||
|
We have these scenarios:
|
||||||
|
|
||||||
|
- **default**:
|
||||||
|
A 3 control + 2 worker node cluster based very closely on the [sample inventory](../inventory/sample/).
|
||||||
|
- **ipv6**:
|
||||||
|
A cluster that is externally accessible via IPv6 ([more information](ipv6/README.md))
|
||||||
|
To save a bit of test time, this cluster is _not_ highly available, it consists of only one control and one worker node.
|
||||||
|
- **single_node**:
|
||||||
|
Very similar to the default scenario, but uses only a single node for all cluster functionality.
|
||||||
|
|
||||||
|
## How to execute
|
||||||
|
|
||||||
|
To test on your local machine, follow these steps:
|
||||||
|
|
||||||
|
### System requirements
|
||||||
|
|
||||||
|
Make sure that the following software packages are available on your system:
|
||||||
|
|
||||||
|
- [Python 3](https://www.python.org/downloads)
|
||||||
|
- [Vagrant](https://www.vagrantup.com/downloads)
|
||||||
|
- [VirtualBox](https://www.virtualbox.org/wiki/Downloads)
|
||||||
|
|
||||||
|
### Set up VirtualBox networking on Linux and macOS
|
||||||
|
|
||||||
|
_You can safely skip this if you are working on Windows._
|
||||||
|
|
||||||
|
Furthermore, the test cluster uses the `192.168.30.0/24` subnet which is [not set up by VirtualBox automatically](https://www.virtualbox.org/manual/ch06.html#network_hostonly).
|
||||||
|
To set the subnet up for use with VirtualBox, please make sure that `/etc/vbox/networks.conf` exists and that it contains this line:
|
||||||
|
|
||||||
|
```
|
||||||
|
* 192.168.30.0/24
|
||||||
|
* fdad:bad:ba55::/64
|
||||||
|
```
|
||||||
|
|
||||||
|
### Install Python dependencies
|
||||||
|
|
||||||
|
You will get [Molecule, Ansible and a few extra dependencies](../requirements.txt) via [pip](https://pip.pypa.io/).
|
||||||
|
Usually, it is advisable to work in a [virtual environment](https://docs.python.org/3/tutorial/venv.html) for this:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /path/to/k3s-ansible
|
||||||
|
|
||||||
|
# Create a virtualenv at ".env". You only need to do this once.
|
||||||
|
python3 -m venv .env
|
||||||
|
|
||||||
|
# Activate the virtualenv for your current shell session.
|
||||||
|
# If you start a new session, you will have to repeat this.
|
||||||
|
source .env/bin/activate
|
||||||
|
|
||||||
|
# Install the required packages into the virtualenv.
|
||||||
|
# These remain installed across shell sessions.
|
||||||
|
python3 -m pip install -r requirements.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
### Run molecule
|
||||||
|
|
||||||
|
With the virtual environment from the previous step active in your shell session, you can now use molecule to test the playbook.
|
||||||
|
Interesting commands are:
|
||||||
|
|
||||||
|
- `molecule create`: Create virtual machines for the test cluster nodes.
|
||||||
|
- `molecule destroy`: Delete the virtual machines for the test cluster nodes.
|
||||||
|
- `molecule converge`: Run the `site` playbook on the nodes of the test cluster.
|
||||||
|
- `molecule side_effect`: Run the `reset` playbook on the nodes of the test cluster.
|
||||||
|
- `molecule verify`: Verify that the cluster works correctly.
|
||||||
|
- `molecule test`: The "all-in-one" sequence of steps that is executed in CI.
|
||||||
|
This includes the `create`, `converge`, `verify`, `side_effect` and `destroy` steps.
|
||||||
|
See [`molecule.yml`](default/molecule.yml) for more details.
|
||||||
99
molecule/default/molecule.yml
Normal file
99
molecule/default/molecule.yml
Normal file
@@ -0,0 +1,99 @@
|
|||||||
|
---
|
||||||
|
dependency:
|
||||||
|
name: galaxy
|
||||||
|
driver:
|
||||||
|
name: vagrant
|
||||||
|
platforms:
|
||||||
|
|
||||||
|
- name: control1
|
||||||
|
box: generic/ubuntu2204
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- master
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: 192.168.30.38
|
||||||
|
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"
|
||||||
|
|
||||||
|
- name: control2
|
||||||
|
box: generic/debian11
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- master
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: 192.168.30.39
|
||||||
|
|
||||||
|
- name: control3
|
||||||
|
box: generic/rocky9
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- master
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: 192.168.30.40
|
||||||
|
|
||||||
|
- name: node1
|
||||||
|
box: generic/ubuntu2204
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- node
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: 192.168.30.41
|
||||||
|
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"
|
||||||
|
|
||||||
|
- name: node2
|
||||||
|
box: generic/rocky9
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- node
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: 192.168.30.42
|
||||||
|
|
||||||
|
provisioner:
|
||||||
|
name: ansible
|
||||||
|
playbooks:
|
||||||
|
converge: ../resources/converge.yml
|
||||||
|
side_effect: ../resources/reset.yml
|
||||||
|
verify: ../resources/verify.yml
|
||||||
|
inventory:
|
||||||
|
links:
|
||||||
|
group_vars: ../../inventory/sample/group_vars
|
||||||
|
scenario:
|
||||||
|
test_sequence:
|
||||||
|
- dependency
|
||||||
|
- lint
|
||||||
|
- cleanup
|
||||||
|
- destroy
|
||||||
|
- syntax
|
||||||
|
- create
|
||||||
|
- prepare
|
||||||
|
- converge
|
||||||
|
# idempotence is not possible with the playbook in its current form.
|
||||||
|
- verify
|
||||||
|
# We are repurposing side_effect here to test the reset playbook.
|
||||||
|
# This is why we do not run it before verify (which tests the cluster),
|
||||||
|
# but after the verify step.
|
||||||
|
- side_effect
|
||||||
|
- cleanup
|
||||||
|
- destroy
|
||||||
11
molecule/default/overrides.yml
Normal file
11
molecule/default/overrides.yml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
- name: Apply overrides
|
||||||
|
hosts: all
|
||||||
|
tasks:
|
||||||
|
- name: Override host variables
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
# See: https://github.com/flannel-io/flannel/blob/67d603aaf45ef80f5dd39f43714fc5e6f8a637eb/Documentation/troubleshooting.md#Vagrant # noqa yaml[line-length]
|
||||||
|
flannel_iface: eth1
|
||||||
|
|
||||||
|
# The test VMs might be a bit slow, so we give them more time to join the cluster:
|
||||||
|
retry_count: 45
|
||||||
22
molecule/default/prepare.yml
Normal file
22
molecule/default/prepare.yml
Normal file
@@ -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
|
||||||
35
molecule/ipv6/README.md
Normal file
35
molecule/ipv6/README.md
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# Sample IPv6 configuration for `k3s-ansible`
|
||||||
|
|
||||||
|
This scenario contains a cluster configuration which is _IPv6 first_, but still supports dual-stack networking with IPv4 for most things.
|
||||||
|
This means:
|
||||||
|
|
||||||
|
- The API server VIP is an IPv6 address.
|
||||||
|
- The MetalLB pool consists of both IPv4 and IPv4 addresses.
|
||||||
|
- Nodes as well as cluster-internal resources (pods and services) are accessible via IPv4 as well as IPv6.
|
||||||
|
|
||||||
|
## Network design
|
||||||
|
|
||||||
|
All IPv6 addresses used in this scenario share a single `/48` prefix: `fdad:bad:ba55`.
|
||||||
|
The following subnets are used:
|
||||||
|
|
||||||
|
- `fdad:bad:ba55:`**`0`**`::/64` is the subnet which contains the cluster components meant for external access.
|
||||||
|
That includes:
|
||||||
|
|
||||||
|
- The VIP for the Kubernetes API server: `fdad:bad:ba55::333`
|
||||||
|
- Services load-balanced by MetalLB: `fdad:bad:ba55::1b:0/112`
|
||||||
|
- Cluster nodes: `fdad:bad:ba55::de:0/112`
|
||||||
|
- The host executing Vagrant: `fdad:bad:ba55::1`
|
||||||
|
|
||||||
|
In a home lab setup, this might be your LAN.
|
||||||
|
|
||||||
|
- `fdad:bad:ba55:`**`4200`**`::/56` is used internally by the cluster for pods.
|
||||||
|
|
||||||
|
- `fdad:bad:ba55:`**`4300`**`::/108` is used internally by the cluster for services.
|
||||||
|
|
||||||
|
IPv4 networking is also available:
|
||||||
|
|
||||||
|
- The nodes have addresses inside `192.168.123.0/24`.
|
||||||
|
MetalLB also has a bit of address space in this range: `192.168.123.80-192.168.123.90`
|
||||||
|
- For pods and services, the k3s defaults (`10.42.0.0/16` and `10.43.0.0/16)` are used.
|
||||||
|
|
||||||
|
Note that the host running Vagrant is not part any of these IPv4 networks.
|
||||||
3
molecule/ipv6/host_vars/control1.yml
Normal file
3
molecule/ipv6/host_vars/control1.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
node_ipv4: 192.168.123.11
|
||||||
|
node_ipv6: fdad:bad:ba55::de:11
|
||||||
3
molecule/ipv6/host_vars/node1.yml
Normal file
3
molecule/ipv6/host_vars/node1.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
node_ipv4: 192.168.123.21
|
||||||
|
node_ipv6: fdad:bad:ba55::de:21
|
||||||
65
molecule/ipv6/molecule.yml
Normal file
65
molecule/ipv6/molecule.yml
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
---
|
||||||
|
dependency:
|
||||||
|
name: galaxy
|
||||||
|
driver:
|
||||||
|
name: vagrant
|
||||||
|
platforms:
|
||||||
|
|
||||||
|
- name: control1
|
||||||
|
box: generic/ubuntu2204
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- master
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: fdad:bad:ba55::de:11
|
||||||
|
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"
|
||||||
|
|
||||||
|
- name: node1
|
||||||
|
box: generic/ubuntu2204
|
||||||
|
memory: 2048
|
||||||
|
cpus: 2
|
||||||
|
groups:
|
||||||
|
- k3s_cluster
|
||||||
|
- node
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
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:
|
||||||
|
name: ansible
|
||||||
|
playbooks:
|
||||||
|
converge: ../resources/converge.yml
|
||||||
|
side_effect: ../resources/reset.yml
|
||||||
|
verify: ../resources/verify.yml
|
||||||
|
inventory:
|
||||||
|
links:
|
||||||
|
group_vars: ../../inventory/sample/group_vars
|
||||||
|
scenario:
|
||||||
|
test_sequence:
|
||||||
|
- dependency
|
||||||
|
- lint
|
||||||
|
- cleanup
|
||||||
|
- destroy
|
||||||
|
- syntax
|
||||||
|
- create
|
||||||
|
- prepare
|
||||||
|
- converge
|
||||||
|
# idempotence is not possible with the playbook in its current form.
|
||||||
|
- verify
|
||||||
|
# We are repurposing side_effect here to test the reset playbook.
|
||||||
|
# This is why we do not run it before verify (which tests the cluster),
|
||||||
|
# but after the verify step.
|
||||||
|
- side_effect
|
||||||
|
- cleanup
|
||||||
|
- destroy
|
||||||
45
molecule/ipv6/overrides.yml
Normal file
45
molecule/ipv6/overrides.yml
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
---
|
||||||
|
- name: Apply overrides
|
||||||
|
hosts: all
|
||||||
|
tasks:
|
||||||
|
- name: Override host variables (1/2)
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
# See: https://github.com/flannel-io/flannel/blob/67d603aaf45ef80f5dd39f43714fc5e6f8a637eb/Documentation/troubleshooting.md#Vagrant # noqa yaml[line-length]
|
||||||
|
flannel_iface: eth1
|
||||||
|
|
||||||
|
# The test VMs might be a bit slow, so we give them more time to join the cluster:
|
||||||
|
retry_count: 45
|
||||||
|
|
||||||
|
# IPv6 configuration
|
||||||
|
# ######################################################################
|
||||||
|
|
||||||
|
# The API server will be reachable on IPv6 only
|
||||||
|
apiserver_endpoint: fdad:bad:ba55::333
|
||||||
|
|
||||||
|
# We give MetalLB address space for both IPv4 and IPv6
|
||||||
|
metal_lb_ip_range:
|
||||||
|
- fdad:bad:ba55::1b:0/112
|
||||||
|
- 192.168.123.80-192.168.123.90
|
||||||
|
|
||||||
|
# k3s_node_ip is by default set to the IPv4 address of flannel_iface.
|
||||||
|
# We want IPv6 addresses here of course, so we just specify them
|
||||||
|
# manually below.
|
||||||
|
k3s_node_ip: "{{ node_ipv4 }},{{ node_ipv6 }}"
|
||||||
|
|
||||||
|
- name: Override host variables (2/2)
|
||||||
|
# Since "extra_args" depends on "k3s_node_ip" and "flannel_iface" we have
|
||||||
|
# to set this AFTER overriding the both of them.
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
# A few extra server args are necessary:
|
||||||
|
# - the network policy needs to be disabled.
|
||||||
|
# - we need to manually specify the subnets for services and pods, as
|
||||||
|
# the default has IPv4 ranges only.
|
||||||
|
extra_server_args: >-
|
||||||
|
{{ extra_args }}
|
||||||
|
--tls-san {{ apiserver_endpoint }}
|
||||||
|
{{ '--node-taint node-role.kubernetes.io/master=true:NoSchedule' if k3s_master_taint else '' }}
|
||||||
|
--disable servicelb
|
||||||
|
--disable traefik
|
||||||
|
--disable-network-policy
|
||||||
|
--cluster-cidr=10.42.0.0/16,fdad:bad:ba55:4200::/56
|
||||||
|
--service-cidr=10.43.0.0/16,fdad:bad:ba55:4300::/108
|
||||||
51
molecule/ipv6/prepare.yml
Normal file
51
molecule/ipv6/prepare.yml
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
---
|
||||||
|
- name: Apply overrides
|
||||||
|
ansible.builtin.import_playbook: >-
|
||||||
|
{{ lookup("ansible.builtin.env", "MOLECULE_SCENARIO_DIRECTORY") }}/overrides.yml
|
||||||
|
|
||||||
|
- name: Configure dual-stack networking
|
||||||
|
hosts: all
|
||||||
|
become: true
|
||||||
|
|
||||||
|
# Unfortunately, as of 2022-09, Vagrant does not support the configuration
|
||||||
|
# of both IPv4 and IPv6 addresses for a single network adapter. So we have
|
||||||
|
# to configure that ourselves.
|
||||||
|
# Moreover, we have to explicitly enable IPv6 for the loopback interface.
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
- name: Enable IPv6 for network interfaces
|
||||||
|
ansible.posix.sysctl:
|
||||||
|
name: net.ipv6.conf.{{ item }}.disable_ipv6
|
||||||
|
value: "0"
|
||||||
|
with_items:
|
||||||
|
- all
|
||||||
|
- default
|
||||||
|
- lo
|
||||||
|
|
||||||
|
- name: Disable duplicate address detection
|
||||||
|
# Duplicate address detection did repeatedly fail within the virtual
|
||||||
|
# network. But since this setup does not use SLAAC anyway, we can safely
|
||||||
|
# disable it.
|
||||||
|
ansible.posix.sysctl:
|
||||||
|
name: net.ipv6.conf.{{ item }}.accept_dad
|
||||||
|
value: "0"
|
||||||
|
with_items:
|
||||||
|
- "{{ flannel_iface }}"
|
||||||
|
|
||||||
|
- name: Write IPv4 configuration
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: 55-flannel-ipv4.yaml.j2
|
||||||
|
dest: /etc/netplan/55-flannel-ipv4.yaml
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0644
|
||||||
|
register: netplan_template
|
||||||
|
|
||||||
|
- name: Apply netplan configuration
|
||||||
|
# Conceptually, this should be a handler rather than a task.
|
||||||
|
# However, we are currently not in a role context - creating
|
||||||
|
# one just for this seemed overkill.
|
||||||
|
when: netplan_template.changed
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: netplan apply
|
||||||
|
changed_when: true
|
||||||
8
molecule/ipv6/templates/55-flannel-ipv4.yaml.j2
Normal file
8
molecule/ipv6/templates/55-flannel-ipv4.yaml.j2
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
network:
|
||||||
|
version: 2
|
||||||
|
renderer: networkd
|
||||||
|
ethernets:
|
||||||
|
{{ flannel_iface }}:
|
||||||
|
addresses:
|
||||||
|
- {{ node_ipv4 }}/24
|
||||||
7
molecule/resources/converge.yml
Normal file
7
molecule/resources/converge.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- name: Apply overrides
|
||||||
|
ansible.builtin.import_playbook: >-
|
||||||
|
{{ lookup("ansible.builtin.env", "MOLECULE_SCENARIO_DIRECTORY") }}/overrides.yml
|
||||||
|
|
||||||
|
- name: Converge
|
||||||
|
ansible.builtin.import_playbook: ../../site.yml
|
||||||
7
molecule/resources/reset.yml
Normal file
7
molecule/resources/reset.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- name: Apply overrides
|
||||||
|
ansible.builtin.import_playbook: >-
|
||||||
|
{{ lookup("ansible.builtin.env", "MOLECULE_SCENARIO_DIRECTORY") }}/overrides.yml
|
||||||
|
|
||||||
|
- name: Reset
|
||||||
|
ansible.builtin.import_playbook: ../../reset.yml
|
||||||
5
molecule/resources/verify.yml
Normal file
5
molecule/resources/verify.yml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: Verify
|
||||||
|
hosts: all
|
||||||
|
roles:
|
||||||
|
- verify/from_outside
|
||||||
9
molecule/resources/verify/from_outside/defaults/main.yml
Normal file
9
molecule/resources/verify/from_outside/defaults/main.yml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
---
|
||||||
|
# A host outside of the cluster from which the checks shall be performed
|
||||||
|
outside_host: localhost
|
||||||
|
|
||||||
|
# This kubernetes namespace will be used for testing
|
||||||
|
testing_namespace: molecule-verify-from-outside
|
||||||
|
|
||||||
|
# The directory in which the example manifests reside
|
||||||
|
example_manifests_path: ../../../../example
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: Clean up kubecfg
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ kubecfg.path }}"
|
||||||
|
state: absent
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
- name: Create temporary directory for kubecfg
|
||||||
|
ansible.builtin.tempfile:
|
||||||
|
state: directory
|
||||||
|
suffix: kubecfg
|
||||||
|
register: kubecfg
|
||||||
|
- name: Gathering facts
|
||||||
|
delegate_to: "{{ groups['master'][0] }}"
|
||||||
|
ansible.builtin.gather_facts:
|
||||||
|
- name: Download kubecfg
|
||||||
|
ansible.builtin.fetch:
|
||||||
|
src: "{{ ansible_env.HOME }}/.kube/config"
|
||||||
|
dest: "{{ kubecfg.path }}/"
|
||||||
|
flat: true
|
||||||
|
delegate_to: "{{ groups['master'][0] }}"
|
||||||
|
delegate_facts: true
|
||||||
|
- name: Store path to kubecfg
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
kubecfg_path: "{{ kubecfg.path }}/config"
|
||||||
14
molecule/resources/verify/from_outside/tasks/main.yml
Normal file
14
molecule/resources/verify/from_outside/tasks/main.yml
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
- name: Verify
|
||||||
|
run_once: true
|
||||||
|
delegate_to: "{{ outside_host }}"
|
||||||
|
block:
|
||||||
|
- name: "Test CASE: Get kube config"
|
||||||
|
ansible.builtin.import_tasks: kubecfg-fetch.yml
|
||||||
|
- name: "TEST CASE: Get nodes"
|
||||||
|
ansible.builtin.include_tasks: test/get-nodes.yml
|
||||||
|
- name: "TEST CASE: Deploy example"
|
||||||
|
ansible.builtin.include_tasks: test/deploy-example.yml
|
||||||
|
always:
|
||||||
|
- name: "TEST CASE: Cleanup"
|
||||||
|
ansible.builtin.import_tasks: kubecfg-cleanup.yml
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
---
|
||||||
|
- name: Deploy example
|
||||||
|
block:
|
||||||
|
- name: "Create namespace: {{ testing_namespace }}"
|
||||||
|
kubernetes.core.k8s:
|
||||||
|
api_version: v1
|
||||||
|
kind: Namespace
|
||||||
|
name: "{{ testing_namespace }}"
|
||||||
|
state: present
|
||||||
|
wait: true
|
||||||
|
kubeconfig: "{{ kubecfg_path }}"
|
||||||
|
|
||||||
|
- name: Apply example manifests
|
||||||
|
kubernetes.core.k8s:
|
||||||
|
src: "{{ example_manifests_path }}/{{ item }}"
|
||||||
|
namespace: "{{ testing_namespace }}"
|
||||||
|
state: present
|
||||||
|
wait: true
|
||||||
|
kubeconfig: "{{ kubecfg_path }}"
|
||||||
|
with_items:
|
||||||
|
- deployment.yml
|
||||||
|
- service.yml
|
||||||
|
|
||||||
|
- name: Get info about nginx service
|
||||||
|
kubernetes.core.k8s_info:
|
||||||
|
kind: service
|
||||||
|
name: nginx
|
||||||
|
namespace: "{{ testing_namespace }}"
|
||||||
|
kubeconfig: "{{ kubecfg_path }}"
|
||||||
|
vars: &load_balancer_metadata
|
||||||
|
metallb_ip: status.loadBalancer.ingress[0].ip
|
||||||
|
metallb_port: spec.ports[0].port
|
||||||
|
register: nginx_services
|
||||||
|
|
||||||
|
- name: Assert that the nginx welcome page is available
|
||||||
|
ansible.builtin.uri:
|
||||||
|
url: http://{{ ip | ansible.utils.ipwrap }}:{{ port }}/
|
||||||
|
return_content: yes
|
||||||
|
register: result
|
||||||
|
failed_when: "'Welcome to nginx!' not in result.content"
|
||||||
|
vars:
|
||||||
|
ip: >-
|
||||||
|
{{ nginx_services.resources[0].status.loadBalancer.ingress[0].ip }}
|
||||||
|
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:
|
||||||
|
- name: "Remove namespace: {{ testing_namespace }}"
|
||||||
|
kubernetes.core.k8s:
|
||||||
|
api_version: v1
|
||||||
|
kind: Namespace
|
||||||
|
name: "{{ testing_namespace }}"
|
||||||
|
state: absent
|
||||||
|
kubeconfig: "{{ kubecfg_path }}"
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
- name: Get all nodes in cluster
|
||||||
|
kubernetes.core.k8s_info:
|
||||||
|
kind: node
|
||||||
|
kubeconfig: "{{ kubecfg_path }}"
|
||||||
|
register: cluster_nodes
|
||||||
|
|
||||||
|
- name: Assert that the cluster contains exactly the expected nodes
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that: found_nodes == expected_nodes
|
||||||
|
success_msg: "Found nodes as expected: {{ found_nodes }}"
|
||||||
|
fail_msg: "Expected nodes {{ expected_nodes }}, but found nodes {{ found_nodes }}"
|
||||||
|
vars:
|
||||||
|
found_nodes: >-
|
||||||
|
{{ cluster_nodes | json_query('resources[*].metadata.name') | unique | sort }}
|
||||||
|
expected_nodes: |-
|
||||||
|
{{
|
||||||
|
(
|
||||||
|
( groups['master'] | default([]) ) +
|
||||||
|
( groups['node'] | default([]) )
|
||||||
|
)
|
||||||
|
| unique
|
||||||
|
| 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]
|
||||||
48
molecule/single_node/molecule.yml
Normal file
48
molecule/single_node/molecule.yml
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
---
|
||||||
|
dependency:
|
||||||
|
name: galaxy
|
||||||
|
driver:
|
||||||
|
name: vagrant
|
||||||
|
platforms:
|
||||||
|
- name: control1
|
||||||
|
box: generic/ubuntu2204
|
||||||
|
memory: 4096
|
||||||
|
cpus: 4
|
||||||
|
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:
|
||||||
|
- k3s_cluster
|
||||||
|
- master
|
||||||
|
interfaces:
|
||||||
|
- network_name: private_network
|
||||||
|
ip: 192.168.30.50
|
||||||
|
provisioner:
|
||||||
|
name: ansible
|
||||||
|
playbooks:
|
||||||
|
converge: ../resources/converge.yml
|
||||||
|
side_effect: ../resources/reset.yml
|
||||||
|
verify: ../resources/verify.yml
|
||||||
|
inventory:
|
||||||
|
links:
|
||||||
|
group_vars: ../../inventory/sample/group_vars
|
||||||
|
scenario:
|
||||||
|
test_sequence:
|
||||||
|
- dependency
|
||||||
|
- lint
|
||||||
|
- cleanup
|
||||||
|
- destroy
|
||||||
|
- syntax
|
||||||
|
- create
|
||||||
|
- prepare
|
||||||
|
- converge
|
||||||
|
# idempotence is not possible with the playbook in its current form.
|
||||||
|
- verify
|
||||||
|
# We are repurposing side_effect here to test the reset playbook.
|
||||||
|
# This is why we do not run it before verify (which tests the cluster),
|
||||||
|
# but after the verify step.
|
||||||
|
- side_effect
|
||||||
|
- cleanup
|
||||||
|
- destroy
|
||||||
15
molecule/single_node/overrides.yml
Normal file
15
molecule/single_node/overrides.yml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
- name: Apply overrides
|
||||||
|
hosts: all
|
||||||
|
tasks:
|
||||||
|
- name: Override host variables
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
# See: https://github.com/flannel-io/flannel/blob/67d603aaf45ef80f5dd39f43714fc5e6f8a637eb/Documentation/troubleshooting.md#Vagrant # noqa yaml[line-length]
|
||||||
|
flannel_iface: eth1
|
||||||
|
|
||||||
|
# The test VMs might be a bit slow, so we give them more time to join the cluster:
|
||||||
|
retry_count: 45
|
||||||
|
|
||||||
|
# Make sure that our IP ranges do not collide with those of the default scenario
|
||||||
|
apiserver_endpoint: "192.168.30.223"
|
||||||
|
metal_lb_ip_range: "192.168.30.91-192.168.30.99"
|
||||||
3
reboot.sh
Normal file
3
reboot.sh
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ansible-playbook reboot.yml -i inventory/my-cluster/hosts.ini
|
||||||
9
reboot.yml
Normal file
9
reboot.yml
Normal file
@@ -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
|
||||||
12
requirements.in
Normal file
12
requirements.in
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
ansible-core>=2.13.5
|
||||||
|
ansible-lint>=6.8.6
|
||||||
|
jmespath>=1.0.1
|
||||||
|
jsonpatch>=1.32
|
||||||
|
kubernetes>=25.3.0
|
||||||
|
molecule-vagrant>=1.0.0
|
||||||
|
molecule>=4.0.3
|
||||||
|
netaddr>=0.8.0
|
||||||
|
pre-commit>=2.20.0
|
||||||
|
pre-commit-hooks>=1.3.1
|
||||||
|
pyyaml>=6.0
|
||||||
|
yamllint>=1.28.0
|
||||||
212
requirements.txt
Normal file
212
requirements.txt
Normal file
@@ -0,0 +1,212 @@
|
|||||||
|
#
|
||||||
|
# This file is autogenerated by pip-compile with python 3.8
|
||||||
|
# To update, run:
|
||||||
|
#
|
||||||
|
# pip-compile requirements.in
|
||||||
|
#
|
||||||
|
ansible-compat==2.2.4
|
||||||
|
# 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
|
||||||
|
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
|
||||||
|
platformdirs==2.5.2
|
||||||
|
# via
|
||||||
|
# black
|
||||||
|
# virtualenv
|
||||||
|
pluggy==1.0.0
|
||||||
|
# via molecule
|
||||||
|
pre-commit==2.20.0
|
||||||
|
# via -r requirements.in
|
||||||
|
pre-commit-hooks==4.4.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
|
||||||
|
# pre-commit-hooks
|
||||||
|
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
|
||||||
|
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
|
||||||
|
|
||||||
|
# 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
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
ansible_user: root
|
ansible_user: root
|
||||||
server_init_args: >-
|
server_init_args: >-
|
||||||
{% if groups['master'] | length > 1 %}
|
{% if groups['master'] | length > 1 %}
|
||||||
{% if ansible_host == hostvars[groups['master'][0]]['ansible_host'] | default(groups['master'][0]) %}
|
{% if ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname'] %}
|
||||||
--cluster-init
|
--cluster-init
|
||||||
{% else %}
|
{% else %}
|
||||||
--server https://{{ hostvars[groups['master'][0]]['ansible_host'] | default(groups['master'][0]) }}:6443
|
--server https://{{ hostvars[groups['master'][0]].k3s_node_ip }}:6443
|
||||||
{% endif %}
|
{% endif %}
|
||||||
--token {{ k3s_token }}
|
--token {{ k3s_token }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
28
roles/k3s/master/tasks/fetch_k3s_init_logs.yml
Normal file
28
roles/k3s/master/tasks/fetch_k3s_init_logs.yml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
# Download logs of k3s-init.service from the nodes to localhost.
|
||||||
|
# Note that log_destination must be set.
|
||||||
|
|
||||||
|
- name: Fetch k3s-init.service logs
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: journalctl --all --unit=k3s-init.service
|
||||||
|
changed_when: false
|
||||||
|
register: k3s_init_log
|
||||||
|
|
||||||
|
- name: Create {{ log_destination }}
|
||||||
|
delegate_to: localhost
|
||||||
|
run_once: true
|
||||||
|
become: false
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: "{{ log_destination }}"
|
||||||
|
state: directory
|
||||||
|
mode: "0755"
|
||||||
|
|
||||||
|
- name: Store logs to {{ log_destination }}
|
||||||
|
delegate_to: localhost
|
||||||
|
become: false
|
||||||
|
ansible.builtin.template:
|
||||||
|
src: content.j2
|
||||||
|
dest: "{{ log_destination }}/k3s-init@{{ ansible_hostname }}.log"
|
||||||
|
mode: 0644
|
||||||
|
vars:
|
||||||
|
content: "{{ k3s_init_log.stdout }}"
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
when: ansible_host == hostvars[groups['master'][0]]['ansible_host'] | default(groups['master'][0])
|
when: ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname']
|
||||||
|
|
||||||
- name: Copy vip rbac manifest to first master
|
- name: Copy vip rbac manifest to first master
|
||||||
template:
|
template:
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
when: ansible_host == hostvars[groups['master'][0]]['ansible_host'] | default(groups['master'][0])
|
when: ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname']
|
||||||
|
|
||||||
- name: Copy vip manifest to first master
|
- name: Copy vip manifest to first master
|
||||||
template:
|
template:
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
when: ansible_host == hostvars[groups['master'][0]]['ansible_host'] | default(groups['master'][0])
|
when: ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname']
|
||||||
|
|
||||||
# these will be copied and installed now, then tested later and apply config
|
# these will be copied and installed now, then tested later and apply config
|
||||||
- name: Copy metallb namespace to first master
|
- name: Copy metallb namespace to first master
|
||||||
@@ -48,7 +48,7 @@
|
|||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
when: ansible_host == hostvars[groups['master'][0]]['ansible_host'] | default(groups['master'][0])
|
when: ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname']
|
||||||
|
|
||||||
- name: Copy metallb namespace to first master
|
- name: Copy metallb namespace to first master
|
||||||
template:
|
template:
|
||||||
@@ -57,7 +57,7 @@
|
|||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
when: ansible_host == hostvars[groups['master'][0]]['ansible_host'] | default(groups['master'][0])
|
when: ansible_hostname == hostvars[groups['master'][0]]['ansible_hostname']
|
||||||
|
|
||||||
- name: Init cluster inside the transient k3s-init service
|
- name: Init cluster inside the transient k3s-init service
|
||||||
command:
|
command:
|
||||||
@@ -66,8 +66,6 @@
|
|||||||
--unit=k3s-init \
|
--unit=k3s-init \
|
||||||
k3s server {{ server_init_args }}"
|
k3s server {{ server_init_args }}"
|
||||||
creates: "{{ systemd_dir }}/k3s.service"
|
creates: "{{ systemd_dir }}/k3s.service"
|
||||||
args:
|
|
||||||
warn: false # The ansible systemd module does not support transient units
|
|
||||||
|
|
||||||
- name: Verification
|
- name: Verification
|
||||||
block:
|
block:
|
||||||
@@ -80,6 +78,12 @@
|
|||||||
delay: 10
|
delay: 10
|
||||||
changed_when: false
|
changed_when: false
|
||||||
always:
|
always:
|
||||||
|
- name: Save logs of k3s-init.service
|
||||||
|
include_tasks: fetch_k3s_init_logs.yml
|
||||||
|
when: log_destination
|
||||||
|
vars:
|
||||||
|
log_destination: >-
|
||||||
|
{{ lookup('ansible.builtin.env', 'ANSIBLE_K3S_LOG_DIR', default=False) }}
|
||||||
- name: Kill the temporary service used for initialization
|
- name: Kill the temporary service used for initialization
|
||||||
systemd:
|
systemd:
|
||||||
name: k3s-init
|
name: k3s-init
|
||||||
@@ -146,12 +150,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 }}: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 }}: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:
|
||||||
|
|||||||
5
roles/k3s/master/templates/content.j2
Normal file
5
roles/k3s/master/templates/content.j2
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{#
|
||||||
|
This is a really simple template that just outputs the
|
||||||
|
value of the "content" variable.
|
||||||
|
#}
|
||||||
|
{{ content }}
|
||||||
@@ -77,7 +77,7 @@ spec:
|
|||||||
aggregationLength:
|
aggregationLength:
|
||||||
default: 32
|
default: 32
|
||||||
description: The aggregation-length advertisement option lets
|
description: The aggregation-length advertisement option lets
|
||||||
you “roll up” the /32s into a larger prefix.
|
you "roll up" the /32s into a larger prefix.
|
||||||
format: int32
|
format: int32
|
||||||
minimum: 1
|
minimum: 1
|
||||||
type: integer
|
type: integer
|
||||||
@@ -167,7 +167,7 @@ spec:
|
|||||||
aggregationLength:
|
aggregationLength:
|
||||||
default: 32
|
default: 32
|
||||||
description: The aggregation-length advertisement option lets
|
description: The aggregation-length advertisement option lets
|
||||||
you “roll up” the /32s into a larger prefix.
|
you "roll up" the /32s into a larger prefix.
|
||||||
format: int32
|
format: int32
|
||||||
minimum: 1
|
minimum: 1
|
||||||
type: integer
|
type: integer
|
||||||
@@ -359,7 +359,7 @@ spec:
|
|||||||
aggregationLength:
|
aggregationLength:
|
||||||
default: 32
|
default: 32
|
||||||
description: The aggregation-length advertisement option lets you
|
description: The aggregation-length advertisement option lets you
|
||||||
“roll up” the /32s into a larger prefix. Defaults to 32. Works for
|
"roll up" the /32s into a larger prefix. Defaults to 32. Works for
|
||||||
IPv4 addresses.
|
IPv4 addresses.
|
||||||
format: int32
|
format: int32
|
||||||
minimum: 1
|
minimum: 1
|
||||||
@@ -367,7 +367,7 @@ spec:
|
|||||||
aggregationLengthV6:
|
aggregationLengthV6:
|
||||||
default: 128
|
default: 128
|
||||||
description: The aggregation-length advertisement option lets you
|
description: The aggregation-length advertisement option lets you
|
||||||
“roll up” the /128s into a larger prefix. Defaults to 128. Works
|
"roll up" the /128s into a larger prefix. Defaults to 128. Works
|
||||||
for IPv6 addresses.
|
for IPv6 addresses.
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
|||||||
@@ -4,4 +4,3 @@ metadata:
|
|||||||
name: metallb-system
|
name: metallb-system
|
||||||
labels:
|
labels:
|
||||||
app: metallb
|
app: metallb
|
||||||
|
|
||||||
@@ -33,7 +33,7 @@ spec:
|
|||||||
- name: vip_interface
|
- name: vip_interface
|
||||||
value: {{ flannel_iface }}
|
value: {{ flannel_iface }}
|
||||||
- name: vip_cidr
|
- name: vip_cidr
|
||||||
value: "32"
|
value: "{{ apiserver_endpoint | ansible.utils.ipsubnet | ansible.utils.ipaddr('prefix') }}"
|
||||||
- name: cp_enable
|
- name: cp_enable
|
||||||
value: "true"
|
value: "true"
|
||||||
- name: cp_namespace
|
- name: cp_namespace
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ After=network-online.target
|
|||||||
Type=notify
|
Type=notify
|
||||||
ExecStartPre=-/sbin/modprobe br_netfilter
|
ExecStartPre=-/sbin/modprobe br_netfilter
|
||||||
ExecStartPre=-/sbin/modprobe overlay
|
ExecStartPre=-/sbin/modprobe overlay
|
||||||
ExecStart=/usr/local/bin/k3s agent --server https://{{ apiserver_endpoint }}:6443 --token {{ hostvars[groups['master'][0]]['token'] | default(k3s_token) }} {{ extra_agent_args | default("") }}
|
ExecStart=/usr/local/bin/k3s agent --server https://{{ apiserver_endpoint | ansible.utils.ipwrap }}:6443 --token {{ hostvars[groups['master'][0]]['token'] | default(k3s_token) }} {{ extra_agent_args | default("") }}
|
||||||
KillMode=process
|
KillMode=process
|
||||||
Delegate=yes
|
Delegate=yes
|
||||||
# Having non-zero Limit*s causes performance problems due to accounting overhead
|
# Having non-zero Limit*s causes performance problems due to accounting overhead
|
||||||
|
|||||||
3
roles/k3s/post/defaults/main.yml
Normal file
3
roles/k3s/post/defaults/main.yml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
# Timeout to wait for MetalLB services to come up
|
||||||
|
metal_lb_available_timeout: 120s
|
||||||
@@ -3,9 +3,8 @@
|
|||||||
file:
|
file:
|
||||||
path: /tmp/k3s
|
path: /tmp/k3s
|
||||||
state: directory
|
state: directory
|
||||||
owner: root
|
owner: "{{ ansible_user }}"
|
||||||
group: root
|
mode: 0755
|
||||||
mode: 0644
|
|
||||||
with_items: "{{ groups['master'] }}"
|
with_items: "{{ groups['master'] }}"
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
@@ -13,9 +12,8 @@
|
|||||||
template:
|
template:
|
||||||
src: "metallb.crs.j2"
|
src: "metallb.crs.j2"
|
||||||
dest: "/tmp/k3s/metallb-crs.yaml"
|
dest: "/tmp/k3s/metallb-crs.yaml"
|
||||||
owner: root
|
owner: "{{ ansible_user }}"
|
||||||
group: root
|
mode: 0755
|
||||||
mode: 0644
|
|
||||||
with_items: "{{ groups['master'] }}"
|
with_items: "{{ groups['master'] }}"
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
@@ -26,52 +24,43 @@
|
|||||||
with_items: "{{ groups['master'] }}"
|
with_items: "{{ groups['master'] }}"
|
||||||
run_once: true
|
run_once: true
|
||||||
|
|
||||||
- name: Wait for metallb controller to be running
|
- name: Wait for MetalLB resources
|
||||||
command: >-
|
command: >-
|
||||||
kubectl wait deployment -n metallb-system controller --for condition=Available=True --timeout=60s
|
k3s kubectl wait {{ item.resource }}
|
||||||
|
--namespace='metallb-system'
|
||||||
|
{% if item.name | default(False) -%}{{ item.name }}{%- endif %}
|
||||||
|
{% if item.selector | default(False) -%}--selector='{{ item.selector }}'{%- endif %}
|
||||||
|
{% if item.condition | default(False) -%}{{ item.condition }}{%- endif %}
|
||||||
|
--timeout='{{ metal_lb_available_timeout }}'
|
||||||
changed_when: false
|
changed_when: false
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Wait for metallb webhook service to be running
|
|
||||||
command: >-
|
|
||||||
kubectl wait -n metallb-system --for=jsonpath='{.status.phase}'=Running pods \
|
|
||||||
--selector component=controller --timeout=60s
|
|
||||||
changed_when: false
|
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Wait for metallb pods in replicasets
|
|
||||||
command: >-
|
|
||||||
kubectl wait pods -n metallb-system --for condition=Ready \
|
|
||||||
--selector component=controller,app=metallb --timeout=60s
|
|
||||||
changed_when: false
|
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Wait for the metallb controller readyReplicas
|
|
||||||
command: >-
|
|
||||||
kubectl wait -n metallb-system --for=jsonpath='{.status.readyReplicas}'=1 replicasets \
|
|
||||||
--selector component=controller,app=metallb --timeout=60s
|
|
||||||
changed_when: false
|
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Wait for the metallb controller fullyLabeledReplicas
|
|
||||||
command: >-
|
|
||||||
kubectl wait -n metallb-system --for=jsonpath='{.status.fullyLabeledReplicas}'=1 replicasets \
|
|
||||||
--selector component=controller,app=metallb --timeout=60s
|
|
||||||
changed_when: false
|
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Wait for the metallb controller availableReplicas
|
|
||||||
command: >-
|
|
||||||
kubectl wait -n metallb-system --for=jsonpath='{.status.availableReplicas}'=1 replicasets \
|
|
||||||
--selector component=controller,app=metallb --timeout=60s
|
|
||||||
changed_when: false
|
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
run_once: true
|
||||||
|
with_items:
|
||||||
|
- description: controller
|
||||||
|
resource: deployment
|
||||||
|
name: controller
|
||||||
|
condition: --for condition=Available=True
|
||||||
|
- description: webhook service
|
||||||
|
resource: pod
|
||||||
|
selector: component=controller
|
||||||
|
condition: --for=jsonpath='{.status.phase}'=Running
|
||||||
|
- description: pods in replica sets
|
||||||
|
resource: pod
|
||||||
|
selector: component=controller,app=metallb
|
||||||
|
condition: --for condition=Ready
|
||||||
|
- description: ready replicas of controller
|
||||||
|
resource: replicaset
|
||||||
|
selector: component=controller,app=metallb
|
||||||
|
condition: --for=jsonpath='{.status.readyReplicas}'=1
|
||||||
|
- description: fully labeled replicas of controller
|
||||||
|
resource: replicaset
|
||||||
|
selector: component=controller,app=metallb
|
||||||
|
condition: --for=jsonpath='{.status.fullyLabeledReplicas}'=1
|
||||||
|
- description: available replicas of controller
|
||||||
|
resource: replicaset
|
||||||
|
selector: component=controller,app=metallb
|
||||||
|
condition: --for=jsonpath='{.status.availableReplicas}'=1
|
||||||
|
loop_control:
|
||||||
|
label: "{{ item.description }}"
|
||||||
|
|
||||||
- name: Test metallb-system webhook-service endpoint
|
- name: Test metallb-system webhook-service endpoint
|
||||||
command: >-
|
command: >-
|
||||||
@@ -83,25 +72,23 @@
|
|||||||
- name: Apply metallb CRs
|
- name: Apply metallb CRs
|
||||||
command: >-
|
command: >-
|
||||||
k3s kubectl apply -f /tmp/k3s/metallb-crs.yaml
|
k3s kubectl apply -f /tmp/k3s/metallb-crs.yaml
|
||||||
|
--timeout='{{ metal_lb_available_timeout }}'
|
||||||
|
register: this
|
||||||
changed_when: false
|
changed_when: false
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
run_once: true
|
||||||
|
until: this.rc == 0
|
||||||
|
retries: 5
|
||||||
|
|
||||||
- name: Test metallb-system IPAddressPool
|
- name: Test metallb-system resources
|
||||||
command: >-
|
command: >-
|
||||||
k3s kubectl -n metallb-system get IPAddressPool
|
k3s kubectl -n metallb-system get {{ item }}
|
||||||
changed_when: false
|
changed_when: false
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
run_once: true
|
||||||
|
with_items:
|
||||||
|
- IPAddressPool
|
||||||
|
- L2Advertisement
|
||||||
|
|
||||||
- name: Test metallb-system L2Advertisement
|
- name: Remove tmp directory used for manifests
|
||||||
command: >-
|
|
||||||
k3s kubectl -n metallb-system get L2Advertisement
|
|
||||||
changed_when: false
|
|
||||||
with_items: "{{ groups['master'] }}"
|
|
||||||
run_once: true
|
|
||||||
|
|
||||||
- name: Remove tmp director used for manifests
|
|
||||||
file:
|
file:
|
||||||
path: /tmp/k3s
|
path: /tmp/k3s
|
||||||
state: absent
|
state: absent
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
apiVersion: metallb.io/v1beta1
|
|
||||||
kind: IPAddressPool
|
|
||||||
metadata:
|
|
||||||
name: first-pool
|
|
||||||
namespace: metallb-system
|
|
||||||
spec:
|
|
||||||
addresses:
|
|
||||||
- {{ metal_lb_ip_range }}
|
|
||||||
---
|
|
||||||
apiVersion: metallb.io/v1beta1
|
|
||||||
kind: L2Advertisement
|
|
||||||
metadata:
|
|
||||||
name: default
|
|
||||||
namespace: metallb-system
|
|
||||||
21
roles/k3s/post/templates/metallb.crs.j2
Normal file
21
roles/k3s/post/templates/metallb.crs.j2
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: metallb.io/v1beta1
|
||||||
|
kind: IPAddressPool
|
||||||
|
metadata:
|
||||||
|
name: first-pool
|
||||||
|
namespace: metallb-system
|
||||||
|
spec:
|
||||||
|
addresses:
|
||||||
|
{% if metal_lb_ip_range is string %}
|
||||||
|
{# metal_lb_ip_range was used in the legacy way: single string instead of a list #}
|
||||||
|
{# => transform to list with single element #}
|
||||||
|
{% set metal_lb_ip_range = [metal_lb_ip_range] %}
|
||||||
|
{% endif %}
|
||||||
|
{% for range in metal_lb_ip_range %}
|
||||||
|
- {{ range }}
|
||||||
|
{% endfor %}
|
||||||
|
---
|
||||||
|
apiVersion: metallb.io/v1beta1
|
||||||
|
kind: L2Advertisement
|
||||||
|
metadata:
|
||||||
|
name: default
|
||||||
|
namespace: metallb-system
|
||||||
@@ -23,6 +23,13 @@
|
|||||||
state: present
|
state: present
|
||||||
reload: yes
|
reload: yes
|
||||||
|
|
||||||
|
- name: Enable IPv6 router advertisements
|
||||||
|
sysctl:
|
||||||
|
name: net.ipv6.conf.all.accept_ra
|
||||||
|
value: "2"
|
||||||
|
state: present
|
||||||
|
reload: yes
|
||||||
|
|
||||||
- name: Add br_netfilter to /etc/modules-load.d/
|
- name: Add br_netfilter to /etc/modules-load.d/
|
||||||
copy:
|
copy:
|
||||||
content: "br_netfilter"
|
content: "br_netfilter"
|
||||||
|
|||||||
6
roles/raspberrypi/defaults/main.yml
Normal file
6
roles/raspberrypi/defaults/main.yml
Normal file
@@ -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
|
||||||
@@ -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
|
||||||
1
roles/raspberrypi/tasks/teardown/Raspbian.yml
Normal file
1
roles/raspberrypi/tasks/teardown/Raspbian.yml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
---
|
||||||
1
roles/raspberrypi/tasks/teardown/Rocky.yml
Normal file
1
roles/raspberrypi/tasks/teardown/Rocky.yml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
---
|
||||||
5
roles/raspberrypi/tasks/teardown/Ubuntu.yml
Normal file
5
roles/raspberrypi/tasks/teardown/Ubuntu.yml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: Remove linux-modules-extra-raspi
|
||||||
|
apt:
|
||||||
|
name: linux-modules-extra-raspi
|
||||||
|
state: absent
|
||||||
1
roles/raspberrypi/tasks/teardown/default.yml
Normal file
1
roles/raspberrypi/tasks/teardown/default.yml
Normal file
@@ -0,0 +1 @@
|
|||||||
|
---
|
||||||
@@ -44,21 +44,13 @@
|
|||||||
- /var/lib/kubelet
|
- /var/lib/kubelet
|
||||||
- /var/lib/rancher/k3s
|
- /var/lib/rancher/k3s
|
||||||
- /var/lib/rancher/
|
- /var/lib/rancher/
|
||||||
- /usr/local/bin/k3s
|
|
||||||
- /var/lib/cni/
|
- /var/lib/cni/
|
||||||
|
|
||||||
- name: Reload daemon_reload
|
- name: Reload daemon_reload
|
||||||
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
|
|
||||||
|
|||||||
79
vagrant/Vagrantfile
vendored
79
vagrant/Vagrantfile
vendored
@@ -1,79 +0,0 @@
|
|||||||
# -*- mode: ruby -*-
|
|
||||||
# vi: set ft=ruby :
|
|
||||||
|
|
||||||
Vagrant.configure("2") do |config|
|
|
||||||
# General configuration
|
|
||||||
config.vm.box = "generic/ubuntu2204"
|
|
||||||
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
||||||
config.ssh.insert_key = false
|
|
||||||
|
|
||||||
config.vm.provider :virtualbox do |v|
|
|
||||||
v.memory = 2048
|
|
||||||
v.cpus = 2
|
|
||||||
v.linked_clone = true
|
|
||||||
end
|
|
||||||
|
|
||||||
# Control Node 1
|
|
||||||
config.vm.define "control1" do |control1|
|
|
||||||
control1.vm.hostname = "control1"
|
|
||||||
control1.vm.network "private_network", ip: "192.168.30.38"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Control Node 2
|
|
||||||
config.vm.define "control2" do |control2|
|
|
||||||
control2.vm.hostname = "control2"
|
|
||||||
control2.vm.network "private_network", ip: "192.168.30.39"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Control Node 3
|
|
||||||
config.vm.define "control3" do |control3|
|
|
||||||
control3.vm.hostname = "control3"
|
|
||||||
control3.vm.network "private_network", ip: "192.168.30.40"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Worker Node 1
|
|
||||||
config.vm.define "node1" do |node1|
|
|
||||||
node1.vm.hostname = "node1"
|
|
||||||
node1.vm.network "private_network", ip: "192.168.30.41"
|
|
||||||
end
|
|
||||||
|
|
||||||
# Worker Node 2
|
|
||||||
config.vm.define "node2" do |node2|
|
|
||||||
node2.vm.hostname = "node2"
|
|
||||||
node2.vm.network "private_network", ip: "192.168.30.42"
|
|
||||||
end
|
|
||||||
|
|
||||||
config.vm.provision "ansible",type: "ansible", run: "never" do |ansible|
|
|
||||||
ansible.playbook = "../site.yml"
|
|
||||||
ansible.limit = "all"
|
|
||||||
ansible.groups = {
|
|
||||||
"master" => ["control1", "control2", "control3"],
|
|
||||||
"node" => ["node1", "node2"],
|
|
||||||
"k3s_cluster:children" => ["master", "node"],
|
|
||||||
"k3s_cluster:vars" => {"k3s_version" => "v1.24.4+k3s1",
|
|
||||||
"ansible_user" => "vagrant",
|
|
||||||
"systemd_dir" => "/etc/systemd/system",
|
|
||||||
"flannel_iface" => "eth1",
|
|
||||||
"apiserver_endpoint" => "192.168.30.222",
|
|
||||||
"k3s_token" => "supersecret",
|
|
||||||
"extra_server_args" => "--node-ip={{ ansible_eth1.ipv4.address }} --flannel-iface={{ flannel_iface }} --no-deploy servicelb --no-deploy traefik",
|
|
||||||
"extra_agent_args" => "--flannel-iface={{ flannel_iface }}",
|
|
||||||
"kube_vip_tag_version" => "v0.5.0",
|
|
||||||
"metal_lb_speaker_tag_version" => "v0.13.4",
|
|
||||||
"metal_lb_controller_tag_version" => "v0.13.4",
|
|
||||||
"metal_lb_ip_range" => "192.168.30.80-192.168.30.90",
|
|
||||||
"retry_count" => "60"}
|
|
||||||
}
|
|
||||||
ansible.host_vars = {
|
|
||||||
"control1" => {
|
|
||||||
"server_init_args" => "--cluster-init --token {{ k3s_token }} {{ extra_server_args | default('') }}"
|
|
||||||
},
|
|
||||||
"control2" => {
|
|
||||||
"server_init_args" => "--server https://192.168.30.38:6443 --token {{ k3s_token }} {{ extra_server_args | default('') }}"
|
|
||||||
},
|
|
||||||
"control3" => {
|
|
||||||
"server_init_args" => "--server https://192.168.30.38:6443 --token {{ k3s_token }} {{ extra_server_args | default('') }}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@@ -1,114 +0,0 @@
|
|||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
# Perform a few tests on a cluster created with this playbook.
|
|
||||||
# To simplify test execution, the scripts does not depend on any third-party
|
|
||||||
# packages, only the Python standard library.
|
|
||||||
|
|
||||||
import json
|
|
||||||
import subprocess
|
|
||||||
import unittest
|
|
||||||
from pathlib import Path
|
|
||||||
from time import sleep
|
|
||||||
from warnings import warn
|
|
||||||
|
|
||||||
|
|
||||||
VAGRANT_DIR = Path(__file__).parent.absolute()
|
|
||||||
PLAYBOOK_DIR = VAGRANT_DIR.parent.absolute()
|
|
||||||
|
|
||||||
|
|
||||||
class TestK3sCluster(unittest.TestCase):
|
|
||||||
def _kubectl(self, args: str, json_out: bool = True) -> dict | None:
|
|
||||||
cmd = "kubectl"
|
|
||||||
if json_out:
|
|
||||||
cmd += " -o json"
|
|
||||||
cmd += f" {args}"
|
|
||||||
|
|
||||||
result = subprocess.run(cmd, capture_output=True, shell=True, check=True)
|
|
||||||
|
|
||||||
if json_out:
|
|
||||||
return json.loads(result.stdout)
|
|
||||||
else:
|
|
||||||
return None
|
|
||||||
|
|
||||||
def _curl(self, url: str) -> str:
|
|
||||||
options = [
|
|
||||||
"--silent", # no progress info
|
|
||||||
"--show-error", # ... but errors should still be shown
|
|
||||||
"--fail", # set exit code on error
|
|
||||||
"--location", # follow redirects
|
|
||||||
]
|
|
||||||
cmd = f'curl {" ".join(options)} "{url}"'
|
|
||||||
|
|
||||||
result = subprocess.run(cmd, capture_output=True, shell=True, check=True)
|
|
||||||
output = result.stdout.decode("utf-8")
|
|
||||||
return output
|
|
||||||
|
|
||||||
def _apply_manifest(self, manifest_file: Path) -> dict:
|
|
||||||
apply_result = self._kubectl(
|
|
||||||
f'apply --filename="{manifest_file}" --cascade="background"'
|
|
||||||
)
|
|
||||||
self.addCleanup(
|
|
||||||
lambda: self._kubectl(
|
|
||||||
f'delete --filename="{manifest_file}"',
|
|
||||||
json_out=False,
|
|
||||||
)
|
|
||||||
)
|
|
||||||
return apply_result
|
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def _retry(function, retries: int = 5, seconds_between_retries=1):
|
|
||||||
for retry in range(1, retries + 1):
|
|
||||||
try:
|
|
||||||
return function()
|
|
||||||
except Exception as exc:
|
|
||||||
if retry < retries:
|
|
||||||
sleep(seconds_between_retries)
|
|
||||||
continue
|
|
||||||
else:
|
|
||||||
raise exc
|
|
||||||
|
|
||||||
def _get_load_balancer_ip(
|
|
||||||
self,
|
|
||||||
service: str,
|
|
||||||
namespace: str = "default",
|
|
||||||
) -> str | None:
|
|
||||||
svc_description = self._kubectl(
|
|
||||||
f'get --namespace="{namespace}" service "{service}"'
|
|
||||||
)
|
|
||||||
ip = svc_description["status"]["loadBalancer"]["ingress"][0]["ip"]
|
|
||||||
return ip
|
|
||||||
|
|
||||||
def test_nodes_exist(self):
|
|
||||||
out = self._kubectl("get nodes")
|
|
||||||
node_names = {item["metadata"]["name"] for item in out["items"]}
|
|
||||||
self.assertEqual(
|
|
||||||
node_names,
|
|
||||||
{"control1", "control2", "control3", "node1", "node2"},
|
|
||||||
)
|
|
||||||
|
|
||||||
def test_ip_address_pool_exists(self):
|
|
||||||
out = self._kubectl("get --all-namespaces IpAddressPool")
|
|
||||||
pools = out["items"]
|
|
||||||
self.assertGreater(len(pools), 0)
|
|
||||||
|
|
||||||
def test_nginx_example_page(self):
|
|
||||||
# Deploy the manifests to the cluster
|
|
||||||
deployment = self._apply_manifest(PLAYBOOK_DIR / "example" / "deployment.yml")
|
|
||||||
service = self._apply_manifest(PLAYBOOK_DIR / "example" / "service.yml")
|
|
||||||
|
|
||||||
# Assert that the dummy page is available
|
|
||||||
metallb_ip = self._retry(
|
|
||||||
lambda: self._get_load_balancer_ip(service["metadata"]["name"])
|
|
||||||
)
|
|
||||||
# Now that an IP address was assigned, let's reload the service description:
|
|
||||||
service = self._kubectl(f'get service "{service["metadata"]["name"]}"')
|
|
||||||
metallb_port = service["spec"]["ports"][0]["port"]
|
|
||||||
|
|
||||||
response_body = self._retry(
|
|
||||||
lambda: self._curl(f"http://{metallb_ip}:{metallb_port}/")
|
|
||||||
)
|
|
||||||
self.assertIn("Welcome to nginx!", response_body)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
unittest.main()
|
|
||||||
Reference in New Issue
Block a user