File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -236,6 +236,16 @@ spec:
236
236
env :
237
237
- name : KUBECONFIG
238
238
value : " /credentials/$(steps.get-kubeconfig.results.kubeconfig)"
239
+ - name : CHAINS_DOCKER_CONFIG_JSON
240
+ valueFrom :
241
+ secretKeyRef :
242
+ key : config.json
243
+ name : quay-io-dockerconfig
239
244
script : |
245
+
246
+ export CHAINS_REPOSITORY=quay.io/openshift-pipeline/chainstest
247
+
240
248
gauge run --tags="" --log-level=debug --verbose specs/pipelines/
241
249
gauge run --tags="" --log-level=debug --verbose specs/metrics/
250
+ gauge run --tags="" --log-level=debug --verbose specs/chains/
251
+ gauge run --tags="" --log-level=debug --verbose specs/manualapprovalgate/
Original file line number Diff line number Diff line change
1
+ # This document explains about the e2e configuration in Konflux.
2
+
3
+ #### Release Test Repo:
4
+ Release tests are executed from this repo
5
+ https://github.com/openshift-pipelines/release-tests
6
+
7
+ #### Required Secrets:
8
+ To run the release tests we need to have below secrets in konflux tenant.
9
+
10
+ - <b > github </b > <br />
11
+ This Secret is required to access private repositories on Github. in absence of this tests related to private repos will fail.
12
+
13
+ ```
14
+ oc create secret generic github --from-literal=github-token=$GITHUB_TOKEN
15
+ ```
16
+
17
+
18
+ * <b > quay-io-dockerconfig </b > <br />
19
+ This secret is used to access repos from quay.io/openshift-pipeline
20
+ ```
21
+ oc create secret generic quay-io-dockerconfig --from-literal=config.json=$QUAY_DOCKERCONFIG
22
+ ```
23
+
You can’t perform that action at this time.
0 commit comments