-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(RHIDP-460): update rhdh-setup and add search-catalog scenario
Signed-off-by: Pavel Macík <[email protected]>
- Loading branch information
Showing
15 changed files
with
589 additions
and
190 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,3 @@ jobs: | |
|
||
- name: Run linters | ||
run: make lint | ||
|
||
- name: Run ShellCheck | ||
uses: ludeeus/action-shellcheck@master |
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,8 +1,8 @@ | ||
**/.tmp/* | ||
.venv | ||
.vscode | ||
.rhdh-setup.git* | ||
benchmark-scenario | ||
benchmark-before | ||
benchmark-after | ||
load-test.log | ||
shellcheck | ||
shellcheck |
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 was deleted.
Oops, something went wrong.
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,2 +1,3 @@ | ||
nohup.out | ||
app-config.yaml | ||
config.yaml |
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,7 +1,14 @@ | ||
# rhdh-setup | ||
Run `./deploy.sh` to setup backstage with keycloak. | ||
The script expects `QUAY_TOKEN` and `GITHUB_TOKEN` to be set. | ||
Run `./deploy.sh -i` to install backstage with keycloak. | ||
|
||
The script expects follwoing environmental variables to be set: | ||
* `QUAY_TOKEN` | ||
* `GITHUB_TOKEN` | ||
* `GITHUB_USER` | ||
* `GITHUB_REPO` | ||
|
||
Run with `-r` to delete backstage and redeploy again `./deploy.sh -r`. This is used to syc up users and groups from keycloak. | ||
|
||
Run with `-d` to delete backstage only. | ||
|
||
Run with `-c` to create objects (Users, Groups, Components and APIs). |
Oops, something went wrong.