-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add mocha tests * add github action to run tests * test GHA * npm install * npm don't fail test * change to use branch tag for PR * fix creds * fix naming * adding for all services * add other GHAs * test change for FE * fix naming * should fail test * hide API key printing * revert changes to services * fix names of sandboxes
- Loading branch information
Showing
9 changed files
with
2,606 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.idea/ | ||
/hotrod | ||
/dist/ | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "@{git-branch}" | ||
spec: | ||
description: sandbox for customer service | ||
cluster: demo | ||
labels: | ||
signadot/github-repo: "signadot/hotrod" | ||
signadot/github-pull-request: "@{github-pr}" | ||
forks: | ||
- forkOf: | ||
kind: Deployment | ||
name: customer | ||
namespace: hotrod | ||
customizations: | ||
images: | ||
- container: hotrod | ||
image: "@{image}" | ||
defaultRouteGroup: | ||
endpoints: | ||
- name: route-endpoint | ||
target: http://route.hotrod.svc:8081 | ||
- name: frontend-endpoint | ||
target: http://frontend.hotrod.svc:8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "@{git-branch}" | ||
spec: | ||
description: sandbox for driver service | ||
cluster: demo | ||
labels: | ||
signadot/github-repo: "signadot/hotrod" | ||
signadot/github-pull-request: "@{github-pr}" | ||
forks: | ||
- forkOf: | ||
kind: Deployment | ||
name: driver | ||
namespace: hotrod | ||
customizations: | ||
images: | ||
- container: hotrod | ||
image: "@{image}" | ||
defaultRouteGroup: | ||
endpoints: | ||
- name: driver-endpoint | ||
target: grpc://driver.hotrod.svc:8082 | ||
- name: frontend-endpoint | ||
target: http://frontend.hotrod.svc:8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: "@{git-branch}" | ||
spec: | ||
description: sandbox for route service | ||
cluster: demo | ||
labels: | ||
signadot/github-repo: "signadot/hotrod" | ||
signadot/github-pull-request: "@{github-pr}" | ||
forks: | ||
- forkOf: | ||
kind: Deployment | ||
name: route | ||
namespace: hotrod | ||
customizations: | ||
images: | ||
- container: hotrod | ||
image: "@{image}" | ||
defaultRouteGroup: | ||
endpoints: | ||
- name: route-endpoint | ||
target: http://route.hotrod.svc:8083 | ||
- name: frontend-endpoint | ||
target: http://frontend.hotrod.svc:8080 |
Oops, something went wrong.