Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hack/kind-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ if [[ "${TRACE-0}" == "1" ]]; then
fi

KIND_CLUSTER_NAME=${CAPI_KIND_CLUSTER_NAME:-"capi-test"}
KIND_CLUSTER_IMAGE=${CAPI_KIND_CLUSTER_IMAGE:-""}

# 1. If kind cluster already exists exit.
if [[ "$(kind get clusters)" =~ .*"${KIND_CLUSTER_NAME}".* ]]; then
Expand All @@ -51,7 +52,7 @@ fi
# https://github.com/containerd/containerd/blob/main/docs/cri/config.md#registry-configuration
# See: https://github.com/containerd/containerd/blob/main/docs/hosts.md

echo "$KIND_CLUSTER_CONFIG" | kind create cluster --name="$KIND_CLUSTER_NAME" --config=-
echo "$KIND_CLUSTER_CONFIG" | kind create cluster --name="$KIND_CLUSTER_NAME" --image="$KIND_CLUSTER_IMAGE" --config=-

# 4. Add the registry config to the nodes
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2468,7 +2468,7 @@
},
"editorMode": "code",
"expr": "workqueue_depth{pod=~\"$Pod\",name=~\"$Controller\"}",
"legendFormat": "{{pod}}: {{name}}",
"legendFormat": "{{pod}}: {{name}} ({{ priority }})",
"range": true,
"refId": "A"
}
Expand Down
Loading