File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,16 @@ function ensure-k8test() {
1919 # on the runners and cloning via SSH does not work.
2020 #
2121 # Therefore we run a separate install block that is only meant for GitHub.
22- if [[ " ${GITHUB_ACTIONS:- } " == " true" ]] then
22+ if [[ " ${GITHUB_ACTIONS:- } " == " true" ]]; then
2323 if test -d k8test; then
24- source k8test/venv/bin/activate
24+ source k8test/venv/bin/activate
2525 return
2626 fi
2727
2828 mkdir -p ~ /.ssh/ && touch ~ /.ssh/known_hosts
2929 git clone https://github.com/cloudscale-ch/k8test
3030 python3 -m venv k8test/venv
31- source k8test/venv/bin/activate
31+ source k8test/venv/bin/activate
3232 pip install poetry
3333 poetry install --directory k8test
3434 return
@@ -74,7 +74,7 @@ function ensure-cluster() {
7474 if ! test -f k8test/cluster/ssh.pub; then
7575 ssh-keygen -t ed25519 -N ' ' -f k8test/cluster/ssh
7676 fi
77-
77+
7878 if ! test -f k8test/cluster/admin.conf; then
7979 zone=" $( random-zone) "
8080
@@ -107,7 +107,7 @@ function ensure-cluster() {
107107 -e kubelet_extra_args=' --cloud-provider=external' \
108108 -e kubernetes=" ${KUBERNETES} " \
109109 -e cluster_prefix=" ${CLUSTER_PREFIX} " \
110- -e subnet=" ${SUBNET} "
110+ -e subnet=" ${SUBNET} "
111111 fi
112112}
113113
You can’t perform that action at this time.
0 commit comments