This repository has been archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
init.bat
199 lines (169 loc) · 6.12 KB
/
init.bat
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
@ECHO OFF
setlocal
set PROJECT_HOME=%~dp0
set DEMO=Cloud Customer Evaluation Demo
set AUTHORS=Andrew Block, Eric D. Schabell
set [email protected]:redhatdemocentral/rhcs-custoemr-evaluation-demo.git
set SRC_DIR=%PROJECT_HOME%installs
set BPMS=jboss-bpmsuite-6.4.0.GA-deployable-eap7.x.zip
set EAP=jboss-eap-7.0.0-installer.jar
REM Adjust these variables to point to an OCP instance.
set OPENSHIFT_USER=openshift-dev
set OPENSHIFT_PWD=devel
set HOST_IP=192.168.99.100
set OCP_APP=rhcs-customereval-demo
set OCP_PRJ=appdev-in-cloud
REM wipe screen.
cls
echo.
echo #################################################################
echo ## ##
echo ## Setting up the %DEMO% ##
echo ## ##
echo ## ##
echo ## #### #### # # ### # # ##### ##### ##### ##
echo ## # # # # # # # # # # # # # # ##
echo ## #### #### # # # ## # # # # ### ##
echo ## # # # # # # # # # # # ##
echo ## #### # # # ### ##### ##### # ##### ##
echo ## ##
echo ## #### # ### # # #### ##
echo ## # # # # # # # # # ##
echo ## ### # # # # # # # # ##
echo ## # # # # # # # # # ##
echo ## #### ##### ### ### #### ##
echo ## ##
echo ## brought to you by, ##
echo ## %AUTHORS% ##
echo ## ##
echo ## %PROJECT% ##
echo ## ##
echo #################################################################
echo.
REM Validate OpenShift
set argTotal=0
for %%i in (%*) do set /A argTotal+=1
if %argTotal% EQU 1 (
call :validateIP %1 valid_ip
if !valid_ip! EQU 0 (
echo OpenShift host given is a valid IP...
set HOST_IP=%1
echo.
echo Proceeding with OpenShift host: !HOST_IP!...
) else (
echo Please provide a valid IP that points to an OpenShift installation...
echo.
GOTO :printDocs
)
)
if %argTotal% GTR 1 (
GOTO :printDocs
)
REM make some checks first before proceeding.
call where oc >nul 2>&1
if %ERRORLEVEL% NEQ 0 (
echo OpenShift command line tooling is required but not installed yet... download here:
echo https://access.redhat.com/downloads/content/290
GOTO :EOF
)
if exist "%SRC_DIR%\%EAP%" (
echo Product sources are present...
echo.
) else (
echo Need to download %EAP% package from https://developers.redhat.com/products/eap/download
echo and place it in the %SRC_DIR% directory to proceed...
echo.
GOTO :EOF
)
if exist "%SRC_DIR%\%BPMS%" (
echo Product sources are present...
echo.
) else (
echo Need to download %BPMS% package from https://developers.redhat.com/products/bpmsuite/download
echo and place it in the %SRC_DIR% directory to proceed...
echo.
GOTO :EOF
)
echo OpenShift commandline tooling is installed...
echo.
echo Logging in to OpenShift as %OPENSHIFT_USER%...
echo.
call oc login %HOST_IP%:8443 --password="%OPENSHIFT_PWD%" --username="%OPENSHIFT_USER%"
if not "%ERRORLEVEL%" == "0" (
echo.
echo Error occurred during 'oc login' command!
echo.
GOTO :EOF
)
echo.
echo Creating a new project...
echo.
call oc new-project %OCP_PRJ%
echo.
echo Setting up a new build...
echo.
call oc delete bc %OCP_APP% -n %OCP_PRJ% >nul 2>&1
call oc delete imagestreams developer >nul 2>&1
call oc delete imagestreams %OCP_APP% >nul 2>&1
call oc new-build "jbossdemocentral/developer" --name=%OCP_APP% --binary=true
if not "%ERRORLEVEL%" == "0" (
echo.
echo Error occurred during 'oc new-build' command!
echo.
GOTO :EOF
)
REM need to wait a bit for new build to finish with developer image.
timeout 10 /nobreak
echo.
echo Importing developer image...
echo.
call oc import-image developer
if not "%ERRORLEVEL%" == "0" (
echo.
echo Error occurred during 'oc import-image' command!
echo.
GOTO :EOF
)
echo.
echo Starting a build, this takes some time to upload all of the product sources for build...
echo.
call oc start-build %OCP_APP% --from-dir=. --follow=true --wait=true
if not "%ERRORLEVEL%" == "0" (
echo.
echo Error occurred during 'oc start-build' command!
echo.
GOTO :EOF
)
echo.
echo Creating a new application...
echo.
call oc new-app %OCP_APP%
if not "%ERRORLEVEL%" == "0" (
echo.
echo Error occurred during 'oc new-app' command!
echo.
GOTO :EOF
)
echo.
echo Creating an externally facing route by exposing a service...
echo.
call oc expose service %OCP_APP% --port=8080
if not "%ERRORLEVEL%" == "0" (
echo.
echo Error occurred during 'oc expose service' command!
echo.
GOTO :EOF
)
echo.
echo ====================================================================
echo = =
echo = Login to start exploring the Rewards project: =
echo = =
echo = http://%OCP_APP%-%OCP_PRJ%.%HOST_IP%.nip.io/business-central =
echo = =
echo = [ u:erics / p:bpmsuite1! ] =
echo = =
echo = Note: it takes a few minutes to expose the service... =
echo = =
echo ====================================================================
echo.