Compare commits

...

43 Commits

Author SHA1 Message Date
Timothy Stewart
59e76924b8 fix(ci): adjusting cache steps 2024-01-21 17:33:57 -06:00
Timothy Stewart
4f635eb0ef fix(ci): adjusting cache steps 2024-01-21 17:16:46 -06:00
Timothy Stewart
f6597e859d fix(ci): adjusting cache steps 2024-01-21 16:51:29 -06:00
Timothy Stewart
82d36572f1 fix(ci): adjusting cache steps 2024-01-21 16:47:41 -06:00
Timothy Stewart
7f7e0e7921 fix(ci): adjusting cache steps 2024-01-21 16:32:26 -06:00
Timothy Stewart
cdfee6f1e9 fix(ci): adjusting cache steps 2024-01-21 16:28:19 -06:00
Timothy Stewart
f767c32bf8 fix(ci): adjusting cache steps 2024-01-21 16:09:59 -06:00
Timothy Stewart
5cc46eb360 fix(ci): adjusting cache steps 2024-01-21 16:00:24 -06:00
Timothy Stewart
980622fdbd fix(ci): adjusting cache steps 2024-01-21 15:42:13 -06:00
Timothy Stewart
f8e408b3bd fix(ci): adjusting cache steps 2024-01-21 15:40:17 -06:00
Timothy Stewart
0c4bafa70c fix(ci): adjusting cache steps 2024-01-21 15:37:51 -06:00
Timothy Stewart
eb7046fb34 fix(ci): adjusting cache steps 2024-01-21 15:35:30 -06:00
Timothy Stewart
dfdcff7e11 fix(ci): adjusting cache steps 2024-01-21 15:26:36 -06:00
Timothy Stewart
d66e745979 fix(ci): adjusting cache steps 2024-01-21 15:20:26 -06:00
Timothy Stewart
c3597a9623 fix(ci): adjusting cache steps 2024-01-21 15:19:52 -06:00
Timothy Stewart
2333e85148 fix(ci): adjusting cache steps 2024-01-21 15:17:04 -06:00
Timothy Stewart
7c1b17a40c fix(ci): adjusting cache steps 2024-01-21 15:14:37 -06:00
Timothy Stewart
4b4922e1b6 fix(ci): adjusting cache steps 2024-01-21 15:11:38 -06:00
Timothy Stewart
f07009e0c5 fix(ci): move to macos13 2024-01-21 14:49:06 -06:00
Timothy Stewart
0e233e1d0f fix(ci): move to macos13 2024-01-21 14:35:45 -06:00
Timothy Stewart
22a617734d fix(ci): move to macos13 2024-01-21 14:24:51 -06:00
Timothy Stewart
272e9cde2b fix(ci): move to macos13 2024-01-21 14:24:37 -06:00
Timothy Stewart
03e0d00180 fix(ci): move to macos13 2024-01-21 14:11:24 -06:00
Timothy Stewart
68f8f20cd7 fix(ci): move to macos13 2024-01-21 13:57:12 -06:00
Timothy Stewart
10f545ff30 fix(ci): move to macos13 2024-01-21 13:56:20 -06:00
Timothy Stewart
5b7794c6bf fix(ci): move to macos13 2024-01-21 13:55:16 -06:00
Timothy Stewart
0c640c5a95 fix(ci): move to macos13 2024-01-21 13:53:56 -06:00
Timothy Stewart
9117ec4b7a fix(ci): move to macos13 2024-01-21 13:48:07 -06:00
Timothy Stewart
50d60e6164 fix(ci): move to macos13 2024-01-21 13:45:59 -06:00
Timothy Stewart
3345de29fc fix(ci): move to macos13 2024-01-21 13:44:14 -06:00
Timothy Stewart
b7248f89d9 fix(ci): move to macos13 2024-01-21 13:39:56 -06:00
Timothy Stewart
0715ab9440 fix(ci): move to macos13 2024-01-21 13:37:10 -06:00
Timothy Stewart
f2b87ec097 fix(ci): move to macos13 2024-01-21 13:20:36 -06:00
Timothy Stewart
3bb8984d7c fix(ci): Add a cache prestep 2024-01-21 13:15:43 -06:00
Timothy Stewart
a2d4e91aa5 fix(ci): Add a cache prestep 2024-01-21 13:06:16 -06:00
Timothy Stewart
7cfcd9727c fix(ci): Add a cache prestep 2024-01-21 12:52:28 -06:00
Timothy Stewart
7a8c7eccb6 fix(ci): Add a cache prestep 2024-01-21 12:45:33 -06:00
Timothy Stewart
f54eb1bf41 fix(ci): Add a cache prestep 2024-01-21 12:26:18 -06:00
Timothy Stewart
20ea0bc998 fix(ci): Add a cache prestep 2024-01-21 12:18:29 -06:00
Timothy Stewart
867eabcd7e fix(ci): Add a cache prestep 2024-01-21 12:16:21 -06:00
Timothy Stewart
9084c90675 fix(ci): Add a cache prestep 2024-01-21 12:11:54 -06:00
Timothy Stewart
fecf7c7fb3 fix(molecule): Reducing cores and memory 2024-01-21 11:10:43 -06:00
Timothy Stewart
ac4a6e7c20 fix(molecule): Reducing cores and memory 2024-01-21 10:47:38 -06:00
8 changed files with 144 additions and 54 deletions

87
.github/workflows/cache.yml vendored Normal file
View File

@@ -0,0 +1,87 @@
---
name: "Cache"
on:
workflow_call:
jobs:
molecule:
name: cache
runs-on: macos-13
env:
PYTHON_VERSION: "3.11"
steps:
- name: Check out the codebase
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v3 2.5.0
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@75f3110429a8c05be0e1bf360334e4cced2b63fa # 2.3.3
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies
- name: Cache Ansible
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
id: cache-ansible
with:
path: ~/.ansible/collections
key: ansible-${{ hashFiles('collections/requirements.txt') }}
restore-keys: |
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::"
- name: Install ansible dependencies
if: steps.cache-ansible.outputs.cache-hit != 'true' # only run if false since this is just a cache step
run: |
echo "::group::Install Ansible role requirements from collections/requirements.yml"
ansible-galaxy install -r collections/requirements.yml
echo "::endgroup::"
- name: Cache Vagrant boxes
id: cache-vagrant
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
with:
lookup-only: true #if it exists, we don't need to restore and can skip the next step
path: |
~/.vagrant.d/boxes
key: vagrant-boxes-${{ hashFiles('**/molecule.yml') }}
restore-keys: |
vagrant-boxes
- name: Configure Homebrew cache
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
id: cache-homebrew
with:
path: |
~/Library/Caches/Homebrew
key: brew-${{ hashFiles('./Brewfile') }}
restore-keys: brew-
- name: Update Homebrew
if: | # only run if false since this is just a cache step
steps.cache-homebrew.outputs.cache-hit != 'true' || steps.cache-homebrew.outputs.cache-hit != 'true'
run: |
brew update --preinstall
- name: Install Homebrew dependencies
if: | # only run if false since this is just a cache step
steps.cache-homebrew.outputs.cache-hit != 'true' || steps.cache-homebrew.outputs.cache-hit != 'true'
run: |
env HOMEBREW_NO_AUTO_UPDATE=1 brew bundle --no-upgrade --file ./Brewfile
- 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.
if: steps.cache-vagrant.outputs.cache-hit != 'true' # only run if false since this is just a cache step
run: ./.github/download-boxes.sh

View File

@@ -8,8 +8,11 @@ on:
paths-ignore: paths-ignore:
- '**/README.md' - '**/README.md'
jobs: jobs:
cache:
uses: ./.github/workflows/cache.yml
lint: lint:
uses: ./.github/workflows/lint.yml uses: ./.github/workflows/lint.yml
needs: [cache]
test: test:
uses: ./.github/workflows/test.yml uses: ./.github/workflows/test.yml
needs: [lint] needs: [cache, lint]

View File

@@ -21,21 +21,11 @@ jobs:
python-version: ${{ env.PYTHON_VERSION }} python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies cache: 'pip' # caching pip dependencies
- name: Cache pip - name: Restore Ansible cache
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11 uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('./requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache Ansible
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11
with: with:
path: ~/.ansible/collections path: ~/.ansible/collections
key: ${{ runner.os }}-ansible-${{ hashFiles('collections/requirements.txt') }} key: ansible-${{ hashFiles('collections/requirements.txt') }}
restore-keys: |
${{ runner.os }}-ansible-
- name: Install dependencies - name: Install dependencies
run: | run: |

View File

@@ -5,7 +5,7 @@ on:
jobs: jobs:
molecule: molecule:
name: Molecule name: Molecule
runs-on: macos-12 runs-on: macos-13
strategy: strategy:
matrix: matrix:
scenario: scenario:
@@ -22,6 +22,33 @@ jobs:
with: with:
ref: ${{ github.event.pull_request.head.sha }} ref: ${{ github.event.pull_request.head.sha }}
- name: Restore Ansible cache
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
with:
path: ~/.ansible/collections
key: ansible-${{ hashFiles('collections/requirements.txt') }}
- name: Restore Homebrew cache
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
with:
path: ~/Library/Caches/Homebrew
key: brew-${{ hashFiles('./Brewfile') }}
- name: Update Homebrew
run: |
brew update --preinstall
- name: Install Homebrew dependencies
run: |
env HOMEBREW_NO_AUTO_UPDATE=1 brew bundle --no-upgrade --file ./Brewfile
- name: Restore vagrant Boxes cache
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
with:
path: ~/.vagrant.d/boxes
key: vagrant-boxes-${{ hashFiles('**/molecule.yml') }}
fail-on-cache-miss: true
- name: Configure VirtualBox - name: Configure VirtualBox
run: |- run: |-
sudo mkdir -p /etc/vbox sudo mkdir -p /etc/vbox
@@ -30,35 +57,6 @@ 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
uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # 3.0.11
with:
path: |
~/.vagrant.d/boxes
key: vagrant-boxes-${{ hashFiles('**/molecule.yml') }}
restore-keys: |
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 }}
uses: actions/setup-python@75f3110429a8c05be0e1bf360334e4cced2b63fa # 2.3.3
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies
- name: Install dependencies - name: Install dependencies
run: | run: |
echo "::group::Upgrade pip" echo "::group::Upgrade pip"
@@ -69,13 +67,21 @@ jobs:
python3 -m pip install -r requirements.txt python3 -m pip install -r requirements.txt
echo "::endgroup::" echo "::endgroup::"
- name: Cache Ansible
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # 4.0
with:
path: ~/.ansible/collections
key: ansible-${{ hashFiles('collections/requirements.txt') }}
restore-keys: |
${{ runner.os }}-ansible-
- name: Test with molecule - name: Test with molecule
run: molecule test --scenario-name ${{ matrix.scenario }} run: molecule test --scenario-name ${{ matrix.scenario }}
timeout-minutes: 90 timeout-minutes: 90
env: env:
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: 120
PY_COLORS: 1 PY_COLORS: 1
ANSIBLE_FORCE_COLOR: 1 ANSIBLE_FORCE_COLOR: 1

4
Brewfile Normal file
View File

@@ -0,0 +1,4 @@
tap "homebrew/bundle"
tap "homebrew/cask-versions"
cask "virtualbox6"
cask "vagrant"

View File

@@ -7,7 +7,7 @@ platforms:
- name: control1 - name: control1
box: generic/ubuntu2204 box: generic/ubuntu2204
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster
@@ -23,7 +23,7 @@ platforms:
- name: control2 - name: control2
box: generic/debian11 box: generic/debian11
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster
@@ -34,7 +34,7 @@ platforms:
- name: control3 - name: control3
box: generic/rocky9 box: generic/rocky9
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster
@@ -45,7 +45,7 @@ platforms:
- name: node1 - name: node1
box: generic/ubuntu2204 box: generic/ubuntu2204
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster
@@ -61,7 +61,7 @@ platforms:
- name: node2 - name: node2
box: generic/rocky9 box: generic/rocky9
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster

View File

@@ -6,7 +6,7 @@ driver:
platforms: platforms:
- name: control1 - name: control1
box: generic/ubuntu2204 box: generic/ubuntu2204
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster
@@ -22,7 +22,7 @@ platforms:
- name: control2 - name: control2
box: generic/ubuntu2204 box: generic/ubuntu2204
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster
@@ -38,7 +38,7 @@ platforms:
- name: node1 - name: node1
box: generic/ubuntu2204 box: generic/ubuntu2204
memory: 2048 memory: 1024
cpus: 2 cpus: 2
groups: groups:
- k3s_cluster - k3s_cluster

View File

@@ -1,6 +1,6 @@
--- ---
# Timeout to wait for MetalLB services to come up # Timeout to wait for MetalLB services to come up
metal_lb_available_timeout: 120s metal_lb_available_timeout: 240s
# Name of the master group # Name of the master group
group_name_master: master group_name_master: master