-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.sh
executable file
·180 lines (157 loc) · 4.84 KB
/
setup.sh
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
#!/usr/bin/env bash
#
# Copyright 2022 Red Hat
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
set -Eeuo pipefail
trap cleanup SIGINT SIGTERM ERR EXIT
VERSION=0.0.1
# Change into the script's directory
# Using relative paths is safe!
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
readonly script_dir
cd "${script_dir}"
usage() {
cat <<EOF
USAGE:
$(basename "${BASH_SOURCE[0]}") [FLAGS] all|openshift|halos|services
FLAGS:
-d, --dev Apply development settings
-h, --help Prints help information
-v, --version Prints version information
--no-color Uses plain text output
ARGUMENTS:
all Setup everything
openshift Setup service account, roles and role binding
halos Deploy halOS service and routes
services Deploy WildFly and Quarkus demo services
EOF
exit
}
cleanup() {
trap - SIGINT SIGTERM ERR EXIT
}
setup_colors() {
if [[ -t 2 ]] && [[ -z "${NO_COLOR-}" ]] && [[ "${TERM-}" != "dumb" ]]; then
NOFORMAT='\033[0m' RED='\033[0;31m' GREEN='\033[0;32m' ORANGE='\033[0;33m' BLUE='\033[0;34m' PURPLE='\033[0;35m' CYAN='\033[0;36m' YELLOW='\033[1;33m'
else
# shellcheck disable=SC2034
NOFORMAT='' RED='' GREEN='' ORANGE='' BLUE='' PURPLE='' CYAN='' YELLOW=''
fi
}
msg() {
echo >&2 -e "${1-}"
}
die() {
local msg=$1
local code=${2-1} # default exit status 1
msg "$msg"
exit "$code"
}
version() {
msg "${BASH_SOURCE[0]} $VERSION"
exit 0
}
parse_params() {
DEVELOPMENT=false
while :; do
case "${1-}" in
-d | --dev) DEVELOPMENT=true ;;
-h | --help) usage ;;
-v | --version) version ;;
--no-color) NO_COLOR=1 ;;
-?*) die "Unknown option: $1" ;;
*) break ;;
esac
shift
done
args=("$@")
[[ ${#args[@]} -eq 0 ]] && die "Missing argument. Please specify one of all|openshift|halos|services"
MODULE=${args[0]}
return 0
}
all() {
openshift
halos
services
}
openshift() {
msg
msg "Setup ${CYAN}OpenShift${NOFORMAT}"
oc get serviceaccount halos-serviceaccount || oc create serviceaccount halos-serviceaccount
oc policy add-role-to-user view -z halos-serviceaccount
}
halos() {
msg
msg "Setup ${CYAN}halOS${NOFORMAT}"
oc apply -f halos/imagestream.yml
oc apply -f halos/deploymentconfig.yml
oc apply -f halos/service.yml
oc apply -f halos/route.yml
}
services() {
msg
msg "Setup ${CYAN}services${NOFORMAT}"
oc new-app quay.io/hpehl/quarkus-halos-demo \
--name=quarkus-demo \
--labels managedby=halos,app.kubernetes.io/name=quarkus
oc new-app quay.io/hpehl/wildfly-halos-demo \
--name=wildfly-thread-racing \
--labels managedby=halos,app.kubernetes.io/name=wildfly
oc new-app quay.io/halconsole/wildfly:27.0.0.Final \
--name=wildfly-27 \
--labels managedby=halos,app.kubernetes.io/name=wildfly
oc new-app quay.io/halconsole/wildfly:26.1.0.Final \
--name=wildfly-261 \
--labels managedby=halos,app.kubernetes.io/name=wildfly
oc new-app quay.io/halconsole/wildfly:26.0.0.Final \
--name=wildfly-26 \
--labels managedby=halos,app.kubernetes.io/name=wildfly
oc expose service quarkus-demo \
--name=quarkus-demo \
--port=8080
oc expose service wildfly-thread-racing \
--name=wildfly-thread-racing \
--port=8080
if [[ "${DEVELOPMENT}" == "true" ]]; then
msg
msg "Setup ${CYAN}services${NOFORMAT} for ${YELLOW}development${NOFORMAT}"
oc expose service wildfly-thread-racing \
--name=wildfly-thread-racing-management \
--port=9990 \
--labels managedby=halos
oc expose service wildfly-27 \
--name=wildfly-27-management \
--port=9990 \
--labels managedby=halos
oc expose service wildfly-261 \
--name=wildfly-261-management \
--port=9990 \
--labels managedby=halos
oc expose service wildfly-26 \
--name=wildfly-26-management \
--port=9990 \
--labels managedby=halos
fi
}
parse_params "$@"
setup_colors
[[ -x oc ]] && die "OpenShift command line tools not available. See https://docs.openshift.com/container-platform/latest/cli_reference/openshift_cli/getting-started-cli.html#installing-openshift-cli"
case "${MODULE-}" in
all) all ;;
openshift) openshift ;;
halos) halos ;;
services) services ;;
*) die "Unknown argument: $1. Please specify one of all|openshift|halos|services" ;;
esac