File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -146,11 +146,11 @@ add-ns-record: check-env-cloud
146
146
terraform apply -target=module.$(cloud ) -add-dns-record -var kubeconfig=${KUBECONFIG} --auto-approve
147
147
@echo " Done adding NS record"
148
148
149
- self_signed ?= " false"
149
+ self_signed ?= false
150
150
.PHONY :
151
151
# # cluster-issuer: Creates a cluster issuer for the correspondign provider
152
152
cluster-issuer : check-env-cloud
153
- ifneq ( $(self_signed ) , "true" )
153
+ ifeq (true, $(self_signed ) )
154
154
@echo "Skipped creating cluster issuer"
155
155
else
156
156
terraform init --upgrade && \
@@ -391,9 +391,11 @@ gitpod-debug-info:
391
391
check-kots-app :
392
392
kubectl kots get --kubeconfig=${KUBECONFIG} app gitpod -n gitpod | grep gitpod | awk ' {print $$2}' | grep " ready" || { $( MAKE) gitpod-debug-info; exit 1; }
393
393
394
+ self_signed ?= false
395
+
394
396
check-gitpod-installation : delete-cm-setup check-kots-app check-env-sub-domain
395
397
@echo " Curling https://${TF_VAR_TEST_ID} .${TF_VAR_domain} /api/version"
396
- ifneq ( $(self_signed ) , )
398
+ ifeq (true, $(self_signed ) )
397
399
export SSL_CERT_FILE=./ca.pem
398
400
endif
399
401
curl -i -X GET https://${TF_VAR_TEST_ID}.${TF_VAR_domain}/api/version || { echo "Curling Gitpod endpoint failed"; exit 1; }
You can’t perform that action at this time.
0 commit comments