annotate prod/install-inventory-app.sh @ 472:44123bc3d4d4

USASR-5154 try updating
author belknapSSDT <zach.belknap@mcoecn.org>
date Thu, 28 Sep 2023 15:23:35 -0400
parents c3f58eddce4f
children
rev   line source
363
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
1 #!/bin/bash
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
2 #
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
3 # read required env variables
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
4 BASEDIR="$PWD"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
5 source $BASEDIR/.env/ssdt-inventory-shared.properties
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
6 source $BASEDIR/.env/ssdt-inventory-app.properties
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
7 #
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
8 # docker login
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
9 echo "Attempting to login to $artifactUrl"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
10 docker login $artifactUrl -u $artifactUser -p $artifactPassword
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
11 # docker pull app image
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
12 echo "Attempting to pull $artifactUrl/inventory-app:$appVersion"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
13 docker pull $artifactUrl/inventory-app:$appVersion
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
14 #
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
15 # Build docker run command based on setting in env files
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
16 echo "Building docker run command"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
17 dockerRunCommand="docker run --name $entityId-inventory-app --restart=unless-stopped --network $entityId-inventory-net -e SPRING_DATASOURCE_URL=jdbc:postgresql://$entityId-inventory-db:5432/invdb"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
18 dockerRunCommand="$dockerRunCommand -e SPRING_DATASOURCE_PASSWORD=$dbPassword -e SPRING_PROFILES_ACTIVE=prod -e APPLICATION_ADMIN_PASSWORD=$adminPassword -e JAVA_OPTS=$java_opts"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
19 dockerRunCommand="$dockerRunCommand -e USAS_CONFIGURATION_HOST=$usasHost -e USAS_CONFIGURATION_PORT=$usasPort -e USAS_CONFIGURATION_APIKEY=$inventoryApiKey -e USAS_CONFIGURATION_REMOTEAPIKEY=$usasApiKey"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
20 if [ ! -z "$virtualHost" ]; then
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
21 dockerRunCommand="$dockerRunCommand -e VIRTUAL_HOST=$virtualHost"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
22 fi
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
23 #
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
24 if [ ! -z "$virtualPort" ]; then
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
25 dockerRunCommand="$dockerRunCommand -e VIRTUAL_PORT=$virtualPort"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
26 fi
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
27 #
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
28 if [ ! -z "$letsencryptHost" ]; then
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
29 dockerRunCommand="$dockerRunCommand -e LETSENCRYPT_HOST=$letsencryptHost"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
30 fi
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
31 #
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
32 if [ ! -z "$letsencryptEmail" ]; then
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
33 dockerRunCommand="$dockerRunCommand -e LETSENCRYPT_EMAIL=$letsencryptEmail"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
34 fi
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
35 #
402
be08b5a62a77 INV-334: Updated inventory scripts to handle new reset property.
Jason Klinger <klinger@nwoca.org>
parents: 363
diff changeset
36 if [ ! -z "$applicationAdminReset" ]; then
be08b5a62a77 INV-334: Updated inventory scripts to handle new reset property.
Jason Klinger <klinger@nwoca.org>
parents: 363
diff changeset
37 dockerRunCommand="$dockerRunCommand -e APPLICATION_ADMIN_RESET=$applicationAdminReset"
be08b5a62a77 INV-334: Updated inventory scripts to handle new reset property.
Jason Klinger <klinger@nwoca.org>
parents: 363
diff changeset
38 fi
be08b5a62a77 INV-334: Updated inventory scripts to handle new reset property.
Jason Klinger <klinger@nwoca.org>
parents: 363
diff changeset
39 #
363
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
40 if [ ! -z "$hostPort" ]; then
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
41 dockerRunCommand="$dockerRunCommand -p $hostPort"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
42 fi
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
43 #
417
c3f58eddce4f INV-475: Added duo properties to inventory scripts.
Jason Klinger <klinger@nwoca.org>
parents: 402
diff changeset
44 if [ ! -z "$duo_enabled" ]; then
c3f58eddce4f INV-475: Added duo properties to inventory scripts.
Jason Klinger <klinger@nwoca.org>
parents: 402
diff changeset
45 dockerRunCommand="$dockerRunCommand -e DUO_ENABLED=$duo_enabled -e DUO_CLIENT_ID=$duo_client_id -e DUO_CLIENT_SECRET=$duo_client_secret -e DUO_API_HOSTNAME=$duo_api_hostname -e DUO_FAIL_OPEN=$duo_fail_open "
c3f58eddce4f INV-475: Added duo properties to inventory scripts.
Jason Klinger <klinger@nwoca.org>
parents: 402
diff changeset
46 dockerRunCommand="$dockerRunCommand -e DUO_USXS_HOST=$duo_usxs_host -e DUO_USXS_PORT=$duo_usxs_port -e DUO_USXS_CONTEXT=$duo_usxs_context -e DUO_MINUTES_UNTIL_EXPIRATION=$duo_minutes_until_expiration "
c3f58eddce4f INV-475: Added duo properties to inventory scripts.
Jason Klinger <klinger@nwoca.org>
parents: 402
diff changeset
47 fi
c3f58eddce4f INV-475: Added duo properties to inventory scripts.
Jason Klinger <klinger@nwoca.org>
parents: 402
diff changeset
48 #
363
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
49 dockerRunCommand="$dockerRunCommand -d $artifactUrl/inventory-app:$appVersion"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
50 #
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
51 # Execute constructed docker run command to create $entityId-inventory-app container connected to db and docker network
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
52 echo "Executing docker run command"
cf7166c5c52f INV-196 Move inventory scripts to prod directory
Matt Calmes <calmes@ssdt-ohio.org>
parents:
diff changeset
53 $dockerRunCommand