Skip to content

Commit 67f33b3

Browse files
committed
Fix netbox image version
1 parent 1310f51 commit 67f33b3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

kind/local-env.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ if ! kubectl get namespaces | grep -q "^${NAMESPACE} "; then
1515
exit 1
1616
fi
1717

18+
# need to align with netbox-chart otherwise the creation of the cluster will hang
1819
declare -a Images=( \
1920
"gcr.io/kubebuilder/kube-rbac-proxy:v0.14.1" \
2021
"busybox:1.36.1" \
2122
"bitnami/redis:7.2.5-debian-12-r0" \
22-
"ghcr.io/netbox-community/netbox:v4.0.5" \
23+
"ghcr.io/netbox-community/netbox:v4.1.7" \
2324
"ghcr.io/zalando/postgres-operator:v1.12.2" \
2425
"ghcr.io/zalando/spilo-16:3.2-p3" \
2526
)
@@ -41,7 +42,6 @@ kubectl wait --namespace="${NAMESPACE}" --timeout=600s --for=condition=complete
4142
kubectl delete configmap --namespace="${NAMESPACE}" netbox-demo-data-load-job-scripts
4243
kubectl delete --namespace="${NAMESPACE}" -f "$(dirname "$0")/load-data-job.yaml"
4344

44-
# 7. Helm install
4545
helm upgrade --install --namespace="${NAMESPACE}" netbox \
4646
--set postgresql.enabled="false" \
4747
--set externalDatabase.host="netbox-db.${NAMESPACE}.svc.cluster.local" \
@@ -51,4 +51,3 @@ helm upgrade --install --namespace="${NAMESPACE}" netbox \
5151
https://github.com/netbox-community/netbox-chart/releases/download/netbox-5.0.0-beta.161/netbox-5.0.0-beta.161.tgz
5252

5353
kubectl rollout status --namespace="${NAMESPACE}" deployment netbox
54-

0 commit comments

Comments
 (0)