Add ArgoCD resource tracking method parameter #307
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: molecule | |
on: | |
pull_request: | |
schedule: | |
- cron: "0 5 * * 5" | |
defaults: | |
run: | |
working-directory: 'nephelaiio.k8s' | |
jobs: | |
molecule: | |
name: molecule | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
scenario: | |
- default | |
- argocd | |
- longhorn | |
- mysql | |
- zalando | |
- strimzi | |
include: | |
- release: v0.22.0 | |
image: v1.29.2 | |
- release: v0.22.0 | |
image: v1.28.7 | |
- release: v0.22.0 | |
image: v1.27.11 | |
- release: 0.22.0 | |
image: v1.26.14 | |
- release: 0.22.0 | |
image: v1.25.16 | |
- release: 0.22.0 | |
image: v1.24.17 | |
- release: 0.22.0 | |
image: v1.23.17 | |
steps: | |
- name: Check out the codebase | |
uses: actions/checkout@v4 | |
with: | |
path: 'nephelaiio.k8s' | |
- name: Set up Python 3 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: 'latest' | |
token: ${{ secrets.GITHUB_TOKEN }} | |
id: helm | |
- name: Install Kind | |
uses: engineerd/[email protected] | |
with: | |
version: "v0.22.0" | |
skipClusterCreation: true | |
- name: Install Make | |
run: sudo apt-get install -y make | |
- name: Install dependencies | |
run: make install | |
- name: Debug test environment | |
run: make debug | |
- name: run molecule tests. | |
run: make test | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
KIND_RELEASE: ${{ matrix.release }} | |
K8S_RELEASE: ${{ matrix.image }} | |
HELM_BIN: ${{ steps.helm.outputs.helm-path }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
MOLECULE_SCENARIO: ${{ matrix.scenario }} |