Skip to content

Commit d39e674

Browse files
committed
Bump netbox e2e test version from 4.1.8 to 4.1.11
1 parent e099af3 commit d39e674

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/e2e-tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ jobs:
7878
- name: Run e2e tests
7979
run: |
8080
make test-e2e-4.0.11
81-
e2e-tests-4-1-8:
82-
name: Against netbox version 4.1.8
81+
e2e-tests-4-1-11:
82+
name: Against netbox version 4.1.11
8383
runs-on: ubuntu-latest
8484
steps:
8585
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -109,4 +109,4 @@ jobs:
109109
kubectl cluster-info
110110
- name: Run e2e tests
111111
run: |
112-
make test-e2e-4.1.8
112+
make test-e2e-4.1.11

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,9 @@ create-kind-4.0.11:
254254
test-e2e-4.0.11: create-kind-4.0.11 deploy-kind install-$(GO_PACKAGE_NAME_CHAINSAW)
255255
chainsaw test $(E2E_PARAM)
256256

257-
.PHONY: create-kind-4.1.8
258-
create-kind-4.1.8:
259-
./kind/local-env.sh --version 4.1.8
260-
.PHONY: test-e2e-4.1.8
261-
test-e2e-4.1.8: create-kind-4.1.8 deploy-kind install-$(GO_PACKAGE_NAME_CHAINSAW)
257+
.PHONY: create-kind-4.1.11
258+
create-kind-4.1.11:
259+
./kind/local-env.sh --version 4.1.11
260+
.PHONY: test-e2e-4.1.11
261+
test-e2e-4.1.11: create-kind-4.1.11 deploy-kind install-$(GO_PACKAGE_NAME_CHAINSAW)
262262
chainsaw test $(E2E_PARAM)

kind/local-env.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
set -e -u -o pipefail
33

44
NAMESPACE=""
5-
VERSION="4.1.8" # default value
6-
NETBOX_HELM_CHART="https://github.com/netbox-community/netbox-chart/releases/download/netbox-5.0.0-beta.169/netbox-5.0.0-beta.169.tgz" # default value
5+
VERSION="4.1.11" # default value
6+
NETBOX_HELM_CHART="https://github.com/netbox-community/netbox-chart/releases/download/netbox-5.0.30/netbox-5.0.30.tgz" # default value
77
while [[ $# -gt 0 ]]; do
88
case $1 in
99
-n|--namespace)
@@ -74,13 +74,13 @@ elif [[ "${VERSION}" == "4.0.11" ]] ;then
7474
sed 's/netbox-demo-v4.1.sql/netbox-demo-v4.0.sql/g' $(dirname "$0")/load-data-job/load-data.orig.sh > $(dirname "$0")/load-data-job/load-data.sh && chmod +x $(dirname "$0")/load-data-job/load-data.sh
7575

7676
cp $(dirname "$0")/load-data-job/dockerfile.orig $(dirname "$0")/load-data-job/dockerfile
77-
elif [[ "${VERSION}" == "4.1.8" ]] ;then
77+
elif [[ "${VERSION}" == "4.1.11" ]] ;then
7878
echo "Using version ${VERSION}"
7979
# need to align with netbox-chart otherwise the creation of the cluster will hang
8080
declare -a Remote_Images=( \
8181
"busybox:1.37.0" \
8282
"docker.io/bitnami/redis:7.4.1-debian-12-r2" \
83-
"ghcr.io/netbox-community/netbox:v4.1.8" \
83+
"ghcr.io/netbox-community/netbox:v4.1.11" \
8484
"ghcr.io/zalando/postgres-operator:v1.12.2" \
8585
"ghcr.io/zalando/spilo-16:3.2-p3" \
8686
)

0 commit comments

Comments
 (0)