Skip to content

Commit

Permalink
fix: makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
raffis committed Dec 6, 2023
1 parent 983f4e8 commit 7f8b73c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ CLUSTER=kind

.PHONY: kind-test
kind-test: ## Deploy including test
kustomize build config/base/crd | kubectl --context kind-${CLUSTER} apply -f -
kustomize build config/base/crd | kubectl --context kind-${CLUSTER} apply --server-side=true -f -
kubectl --context kind-${CLUSTER} -n keycloak-system delete pods --all
kind load docker-image ${IMG} --name ${CLUSTER}
kustomize build config/tests/cases/${TEST_PROFILE} --enable-helm | kubectl --context kind-${CLUSTER} apply -f -
kustomize build config/tests/cases/${TEST_PROFILE} --enable-helm | kubectl --context kind-${CLUSTER} apply --server-side=true -f -
kubectl --context kind-${CLUSTER} -n keycloak-system wait --for=condition=Ready pods -l control-plane=controller-manager -l app.kubernetes.io/managed-by!=Helm,verify!=yes --timeout=3m
kubectl --context kind-${CLUSTER} -n keycloak-system wait --for=jsonpath='{.status.conditions[1].reason}'=PodCompleted pods -l app.kubernetes.io/managed-by!=Helm,verify=yes --timeout=3m

Expand Down

0 comments on commit 7f8b73c

Please sign in to comment.