We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381f9d2 commit 3eecd7fCopy full SHA for 3eecd7f
operator/quickstart.sh
@@ -2,13 +2,15 @@
2
3
set -eou pipefail
4
5
+# shellcheck disable=SC1091
6
source .bingo/variables.env
7
8
setup() {
9
echo "-------------------------------------------"
10
echo "- Creating Kind cluster... -"
11
- $KIND create cluster --config=hack/kind_config.yaml
12
+ # shellcheck disable=SC2154
13
+ ${KIND} create cluster --config=hack/kind_config.yaml
14
}
15
16
deps() {
@@ -70,7 +72,8 @@ certificates() {
70
72
71
73
74
check() {
- $LOGCLI --addr "http://localhost/token-refresher/api/logs/v1/test-oidc" labels
75
76
+ ${LOGCLI} --addr "http://localhost/token-refresher/api/logs/v1/test-oidc" labels
77
78
79
case ${1:-"*"} in
0 commit comments