-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add environment variables for chains e2e Add e2e for manualapprovalgate Add Document for E2E configuration
- Loading branch information
1 parent
df3a4b5
commit dd59d8f
Showing
2 changed files
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This document explains about the e2e configuration in Konflux. | ||
|
||
#### Release Test Repo: | ||
Release tests are executed from this repo | ||
https://github.com/openshift-pipelines/release-tests | ||
|
||
#### Required Secrets: | ||
To run the release tests we need to have below secrets in konflux tenant. | ||
|
||
- <b> github </b> <br/> | ||
This Secret is required to access private repositories on Github. in absence of this tests related to private repos will fail. | ||
|
||
``` | ||
oc create secret generic github --from-literal=github-token=$GITHUB_TOKEN | ||
``` | ||
|
||
|
||
* <b> quay-io-dockerconfig </b> <br/> | ||
This secret is used to access repos from quay.io/openshift-pipeline | ||
``` | ||
oc create secret generic quay-io-dockerconfig --from-literal=config.json=$QUAY_DOCKERCONFIG | ||
``` | ||
|