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 a336409 commit bec662dCopy full SHA for bec662d
Makefile
@@ -32,6 +32,14 @@ start-ui:
32
&& export AUTH_KEYCLOAK_SECRET=$(AUTH_KEYCLOAK_SECRET) \
33
&& docker compose -p $(CI_BUILD_TAG) --compatibility up -d ui --build
34
35
+.PHONY: start-ui-k3d
36
+start-ui-k3d:
37
+ $(MAKE) start-ui \
38
+ GRAPHQL_API=https://lagoon-api.172.18.0.240.nip.io/graphql \
39
+ KEYCLOAK_FRONTEND_URL=https://lagoon-keycloak.172.18.0.240.nip.io/auth \
40
+ AUTH_KEYCLOAK_SECRET=$$(kubectl -n lagoon-core get secrets lagoon-core-keycloak -o json | jq -r '.data["KEYCLOAK_LAGOON_UI_OIDC_CLIENT_SECRET"] | @base64d')
41
+ docker network connect k3d lagoon-ui_ui_1
42
+
43
.PHONY: checkout-core
44
checkout-core:
45
export COREDIR=$$(mktemp -d ./lagoon-core.XXX) \
0 commit comments