Commit d39e674 1 parent e099af3 commit d39e674 Copy full SHA for d39e674
File tree 3 files changed +12
-12
lines changed
3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 78
78
- name : Run e2e tests
79
79
run : |
80
80
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
83
83
runs-on : ubuntu-latest
84
84
steps :
85
85
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -109,4 +109,4 @@ jobs:
109
109
kubectl cluster-info
110
110
- name : Run e2e tests
111
111
run : |
112
- make test-e2e-4.1.8
112
+ make test-e2e-4.1.11
Original file line number Diff line number Diff line change @@ -254,9 +254,9 @@ create-kind-4.0.11:
254
254
test-e2e-4.0.11 : create-kind-4.0.11 deploy-kind install-$(GO_PACKAGE_NAME_CHAINSAW )
255
255
chainsaw test $(E2E_PARAM )
256
256
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 )
262
262
chainsaw test $(E2E_PARAM )
Original file line number Diff line number Diff line change 2
2
set -e -u -o pipefail
3
3
4
4
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
7
7
while [[ $# -gt 0 ]]; do
8
8
case $1 in
9
9
-n|--namespace)
@@ -74,13 +74,13 @@ elif [[ "${VERSION}" == "4.0.11" ]] ;then
74
74
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
75
75
76
76
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
78
78
echo " Using version ${VERSION} "
79
79
# need to align with netbox-chart otherwise the creation of the cluster will hang
80
80
declare -a Remote_Images=( \
81
81
" busybox:1.37.0" \
82
82
" 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 " \
84
84
" ghcr.io/zalando/postgres-operator:v1.12.2" \
85
85
" ghcr.io/zalando/spilo-16:3.2-p3" \
86
86
)
You can’t perform that action at this time.
0 commit comments