-
Notifications
You must be signed in to change notification settings - Fork 14
/
default.env
60 lines (48 loc) · 2.05 KB
/
default.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# GitHub token used to perform testing actions such as checking if RHTAP can create a repository from a GPT in GitHub. Make sure the token have permissions
# to create/update repositories and pull requests. Will try to create promotion pull requests or commits in the RHDH gitops repo
# Required: yes
export GITHUB_TOKEN=''
# GitHub organization where testing actions are performed.
# Required: yes
export GITHUB_ORGANIZATION=''
# GitLab organization where testing actions are performed.
# Required: yes
export GITLAB_ORGANIZATION=''
# GitLab webhook secret used in RHTAP installation.
export GITLAB_WEBHOOK_SECRET=''
# GitLab token used to perform testing actions such as checking if RHTAP can create a repository from a GPT in GitLab.
# Required: no
# Example: glpat-...
export GITLAB_TOKEN=''
# Quay organization where test images are pushed.
# Required: yes
export QUAY_IMAGE_ORG=''
# URL to the Developer Hub for performing testing actions, such as creating components from GPTs or other operations. Make sure the URL does not contain a trailing "/".
# Example: https://installer-developer-hub-rhtap.apps.cluster-49pnz.dynamic.redhatworkshops.io
# Required: yes
export RED_HAT_DEVELOPER_HUB_URL=''
# Namespace where ArgoCD deploys the RH Developer Hub components.
# Required: yes
# Example: rhtap-app
export APPLICATION_ROOT_NAMESPACE=''
# RHTAP root namespace where RHTAP is installed.
# Required: no
# Default: rhtap
export RHTAP_ROOT_NAMESPACE='rhtap'
# Clean all resources created by tests in the cluster. Dangerous: In case of failing tests will remove
# everything.
# Required: no
# Default: rhtap
export CLEAN_AFTER_TESTS='false'
# Jenkins URL
# Required: no (by default testing on Jenkins is disabled)
# Example: https://jenkins-jenkins.apps.cluster-2th9w.2th9w.sandbox1774.opentlc.com
export JENKINS_URL=''
# Jenkins Username
# Required: no (by default testing on Jenkins is disabled)
# Example: admin-admin-edit-view
export JENKINS_USERNAME=''
# Jenkins API Token
# Required: no (by default testing on Jenkins is disabled)
# Example: 112b49e9....
export JENKINS_TOKEN=''