Skip to content

Commit 92f2af5

Browse files
committed
Bump netbox e2e test version from 4.1.8 to 4.1.11
1 parent d874e49 commit 92f2af5

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
@@ -81,8 +81,8 @@ jobs:
8181
- name: Run e2e tests
8282
run: |
8383
make test-e2e-4.0.11
84-
e2e-tests-4-1-8:
85-
name: Against netbox version 4.1.8
84+
e2e-tests-4-1-11:
85+
name: Against netbox version 4.1.11
8686
runs-on: ubuntu-latest
8787
steps:
8888
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -112,4 +112,4 @@ jobs:
112112
kubectl cluster-info
113113
- name: Run e2e tests
114114
run: |
115-
make test-e2e-4.1.8
115+
make test-e2e-4.1.11

Makefile

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

256-
.PHONY: create-kind-4.1.8
257-
create-kind-4.1.8:
258-
./kind/local-env.sh --version 4.1.8
259-
.PHONY: test-e2e-4.1.8
260-
test-e2e-4.1.8: create-kind-4.1.8 deploy-kind install-$(GO_PACKAGE_NAME_CHAINSAW)
256+
.PHONY: create-kind-4.1.11
257+
create-kind-4.1.11:
258+
./kind/local-env.sh --version 4.1.11
259+
.PHONY: test-e2e-4.1.11
260+
test-e2e-4.1.11: create-kind-4.1.11 deploy-kind install-$(GO_PACKAGE_NAME_CHAINSAW)
261261
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)