forked from CICD-Demo/CICD-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment
37 lines (29 loc) · 1.15 KB
/
environment
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
# used by the CICD-Demo git management scripts to pull/push with appropriate
# repo
GITROOT='https://github.com/CICD-Demo'
GITROOT_PUSH='[email protected]:CICD-Demo'
# login to OSE3 and Gogs
DEMOUSER='demo'
DEMOPW='redhat'
DOMAIN='example.com'
# docker images to cache locally
IMAGES='docker.io/cicddemo/amq:latest docker.io/cicddemo/gogs:latest docker.io/cicddemo/jenkins:latest docker.io/cicddemo/sti-eap:latest registry.access.redhat.com/openshift3/mysql-55-rhel7:latest'
STI_IMAGESTREAMS='docker.io/cicddemo/sti-eap'
# local m2 mirror/cache server, if you have one
MAVEN_MIRROR=
# all application microservices repositories
MONSTER_REPOS='broker restapis emailroute db-iaas db-paas webserver'
# all additional CICD-Demo development repositories
DEV_REPOS='docker-amq docker-gogs docker-jenkins docker-sti-eap gogs-src'
# CICD-DEMO infrastructure project
INFRA='infra'
INFRA_REPOS='gogs jenkins'
# Integration test project
INTEGRATION='integration'
INTEGRATION_REPOS='broker restapis emailroute db-paas webserver'
# Production project
PROD='prod'
PROD_REPOS='broker restapis emailroute db-iaas webserver'
# Endpoints for IaaS-based MySQL
IAAS_MYSQL_IP=
IAAS_MYSQL_PORT=3306