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
235 lines (193 loc) · 7.24 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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
@ECHO OFF
setlocal
set PROJECT_HOME=%~dp0
set DEMO=Cloud JBoss BPM Suite Install Demo
set AUTHORS=Andrew Block, Eric D. Schabell
set PROJECT=git@github.com:redhatdemocentral/rhcs-bpms-install-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-bpms-install-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
)
REM make some checks first before proceeding.
if exist %SRC_DIR%\%EAP% (
echo Product EAP 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 BPM Suite 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 JBoss BPM Suite to start developing process projects =
echo = by logging into the OpenShift at: =
echo = =
echo = https://%HOST_IP%:8443 =
echo = =
echo = Find the BPM Suite Business Central web console URL to login =
echo = by selecting in menus as follows: =
echo = =
echo = http://%OCP_APP%-%OCP_PRJ%.%HOST_IP%.nip.io/business-central =
echo = =
echo = Login: [ u:erics / p:bpmsuite1! ] =
echo = =
echo ====================================================================
echo.
GOTO :EOF
:validateIP ipAddress [returnVariable]
setlocal
set "_return=1"
echo %~1^| findstr /b /e /r "[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*" >nul
if not errorlevel 1 for /f "tokens=1-4 delims=." %%a in ("%~1") do (
if %%a gtr 0 if %%a lss 255 if %%b leq 255 if %%c leq 255 if %%d gtr 0 if %%d leq 254 set "_return=0"
)
:endValidateIP
endlocal & ( if not "%~2"=="" set "%~2=%_return%" ) & exit /b %_return%
:printDocs
echo This project can be installed on any OpenShift platform, such as OpenShift Container
echo Platform. It's possible to install it on any available installation by pointing this
echo installer to an OpenShift IP address:
echo.
echo $ ./init.sh IP
echo.
echo If using Red Hat OCP, IP should look like: 192.168.99.100
echo.