File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2
2
set -e -u -o pipefail
3
3
4
4
# Deploy NetBox (with its PostgreSQL operator and demo data) into either:
5
- # • a local kind cluster (preloading images), or
6
- # • a virtual cluster via vcluster (skipping image loads).
5
+ # • a local kind cluster (preloading images)
6
+ # • a virtual cluster using vcluster: https://github.com/loft-sh/vcluster ( used for testing pipeline, loading of images not needed )
7
7
8
8
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
9
9
82
82
83
83
if [[ " $VCLUSTER_MODE " == " --vcluster" ]]; then
84
84
echo " [Running in vCluster mode] skipping docker pull and kind load for remote images."
85
+ sleep 15
85
86
else
86
87
echo " [Running in Kind mode] pulling and loading remote images into kind cluster..."
87
88
for img in " ${Remote_Images[@]} " ; do
You can’t perform that action at this time.
0 commit comments