Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Feb 25, 2024
1 parent adbc349 commit 01c5e35
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/zenith.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
--keycloak-client-secret KEYCLOAK_CLIENT_SECRET
working-directory: example
env:
SPECIFICATION_FILES: "/app/samples/PetstoreAPI-swagger.json:true"
MICROCKS_URL: "http://microcks:8080/api"
SPECIFICATION_FILES: /app/samples/PetstoreAPI-swagger.json:true
MICROCKS_URL: http://microcks:8080/api
KEYCLOAK_CLIENT_ID: microcks-serviceaccount
KEYCLOAK_CLIENT_SECRET: ab54d329-e435-41ae-a900-ec6b3fe15c54
API_NAME_AND_VERSION: ""
Expand Down
4 changes: 2 additions & 2 deletions example/.fluentci/src/dagger/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export const microcksService = () => {
.asService();

const realm = dag.host
? dag.host().file("microcks-realm.json")
: dag.currentModule().source().file("microcks-realm.json");
? dag.host().file("microcks-realm-sample.json")
: dag.currentModule().source().file("microcks-realm-sample.json");

const keycloak = dag
.container()
Expand Down
4 changes: 2 additions & 2 deletions src/dagger/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export const microcksService = () => {
.asService();

const realm = dag.host
? dag.host().file("microcks-realm.json")
: dag.currentModule().source().file("microcks-realm.json");
? dag.host().file("microcks-realm-sample.json")
: dag.currentModule().source().file("microcks-realm-sample.json");

const keycloak = dag
.container()
Expand Down

0 comments on commit 01c5e35

Please sign in to comment.