Support e2e tests against multiple NetBox versions #90
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
# Modified from https://github.com/prometheus-operator/prometheus-operator/blob/main/.github/workflows/e2e-feature-gated.yaml | |
name: e2e-tests | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
NETBOX_HOST: demo.netbox.dev | |
AUTH_TOKEN: 0123456789abcdef0123456789abcdef01234567 | |
POD_NAMESPACE: default | |
HTTPS_ENABLE: true | |
NETBOX_RESTORATION_HASH_FIELD_NAME: netboxOperatorRestorationHash | |
jobs: | |
e2e-tests-3-7-8: | |
name: Against netbox version 3.7.8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version: 1.23.4 | |
- name: Import environment variables from file | |
run: | | |
cat ".github/env" >> "$GITHUB_ENV" | |
- name: Start kind cluster | |
uses: helm/kind-action@ae94020eaf628e9b9b9f341a10cc0cdcf5c018fb # v1.11.0 | |
with: | |
version: ${{ env.kind-version }} | |
node_image: ${{ env.kind-image }} | |
wait: 300s | |
config: ./tests/e2e/kind-config.yaml | |
cluster_name: e2e | |
- name: Wait for cluster to finish bootstraping | |
run: | | |
echo "Waiting for all nodes to be ready..." | |
kubectl wait --for=condition=Ready nodes --all --timeout=120s | |
kubectl get nodes | |
echo "Waiting for all pods to be ready..." | |
kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s | |
kubectl get pods -A | |
echo "Cluster information" | |
kubectl cluster-info | |
- name: Run e2e tests | |
run: | | |
# # Very straight forward way of implementing a test and checking the result | |
# kubectl apply -f config/samples/netbox_v1_prefixclaim.yaml | |
# kubectl get prefixclaim,prefix,ipaddressclaim,ipaddress,iprange,iprangeclaim | |
# kubectl wait --for=condition=ready --timeout=30s prefixclaim.netbox.dev/prefixclaim-sample | |
# Use Chainsaw | |
make test-e2e-3.7.8 | |
e2e-tests-4-0-11: | |
name: Against netbox version 4.0.11 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: 1.23.4 | |
- name: Import environment variables from file | |
run: | | |
cat ".github/env" >> "$GITHUB_ENV" | |
- name: Start kind cluster | |
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0 | |
with: | |
version: ${{ env.kind-version }} | |
node_image: ${{ env.kind-image }} | |
wait: 300s | |
config: ./tests/e2e/kind-config.yaml | |
cluster_name: e2e | |
- name: Wait for cluster to finish bootstraping | |
run: | | |
echo "Waiting for all nodes to be ready..." | |
kubectl wait --for=condition=Ready nodes --all --timeout=120s | |
kubectl get nodes | |
echo "Waiting for all pods to be ready..." | |
kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s | |
kubectl get pods -A | |
echo "Cluster information" | |
kubectl cluster-info | |
- name: Run e2e tests | |
run: | | |
# # Very straight forward way of implementing a test and checking the result | |
# kubectl apply -f config/samples/netbox_v1_prefixclaim.yaml | |
# kubectl get prefixclaim,prefix,ipaddressclaim,ipaddress,iprange,iprangeclaim | |
# kubectl wait --for=condition=ready --timeout=30s prefixclaim.netbox.dev/prefixclaim-sample | |
# Use Chainsaw | |
make test-e2e-4.0.11 | |
e2e-tests-4-1-7: | |
name: Against netbox version 4.1.7 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: 1.23.4 | |
- name: Import environment variables from file | |
run: | | |
cat ".github/env" >> "$GITHUB_ENV" | |
- name: Start kind cluster | |
uses: helm/kind-action@0025e74a8c7512023d06dc019c617aa3cf561fde # v1.10.0 | |
with: | |
version: ${{ env.kind-version }} | |
node_image: ${{ env.kind-image }} | |
wait: 300s | |
config: ./tests/e2e/kind-config.yaml | |
cluster_name: e2e | |
- name: Wait for cluster to finish bootstraping | |
run: | | |
echo "Waiting for all nodes to be ready..." | |
kubectl wait --for=condition=Ready nodes --all --timeout=120s | |
kubectl get nodes | |
echo "Waiting for all pods to be ready..." | |
kubectl wait --for=condition=Ready pods --all --all-namespaces --timeout=300s | |
kubectl get pods -A | |
echo "Cluster information" | |
kubectl cluster-info | |
- name: Run e2e tests | |
run: | | |
# # Very straight forward way of implementing a test and checking the result | |
# kubectl apply -f config/samples/netbox_v1_prefixclaim.yaml | |
# kubectl get prefixclaim,prefix,ipaddressclaim,ipaddress,iprange,iprangeclaim | |
# kubectl wait --for=condition=ready --timeout=30s prefixclaim.netbox.dev/prefixclaim-sample | |
# Use Chainsaw | |
make test-e2e-4.1.7 |