|
2 | 2 |
|
3 | 3 | # Script for building failover-images for dev-environments
|
4 | 4 | # Usage: "build-dev-failover-image.sh <dev1|dev2> <image name>"
|
5 |
| -# XP service secret should be put in the appropriate file (.secret-dev1|.secret-dev2) |
6 |
| -# You also need a Github PAT with repo and packages write access in the .github-token |
7 |
| -# file at the root of the project |
8 |
| -# Take care not to expose secrets! |
| 5 | +# |
| 6 | +# About secrets: |
| 7 | +# As NPM packages with ie post-install scripts could potentially sniff and compromise secrets, |
| 8 | +# we need to read secrets from environment variables. These variables should be set using |
| 9 | +# ie. 1Password CLI or similar. |
| 10 | +# |
| 11 | +# The secrets are: NAV_ENONICXP_DEV1, NAV_ENONICXP_DEV2 AND GITHUB_PAT. |
9 | 12 | #
|
10 | 13 | # Once the image is built, use the relevant deploy action on Github with the chosen
|
11 | 14 | # image name to deploy
|
|
24 | 27 | if [[ "$APP_ENV" == "dev1" ]]
|
25 | 28 | then
|
26 | 29 | echo "Building image $IMAGE_NAME for dev1"
|
27 |
| - SERVICE_SECRET=$(<.secret-dev1) |
| 30 | + SERVICE_SECRET=$NAV_ENONICXP_DEV1 |
28 | 31 | ENV_FILE=".env-dev1"
|
29 | 32 | elif [[ "$APP_ENV" == "dev2" ]]
|
30 | 33 | then
|
31 | 34 | echo "Building image $IMAGE_NAME for dev2"
|
32 |
| - SERVICE_SECRET=$(<.secret-dev2) |
| 35 | + SERVICE_SECRET=$NAV_ENONICXP_DEV2 |
33 | 36 | ENV_FILE=".env-dev2"
|
34 | 37 | else
|
35 | 38 | echo "Invalid ENV specified, aborting"
|
36 | 39 | exit
|
37 | 40 | fi
|
38 | 41 |
|
39 |
| -GITHUB_PAT=$(<../.github-token) |
40 |
| - |
41 | 42 | IMAGE_NAME_FULL="ghcr.io/navikt/nav-enonicxp-frontend:$IMAGE_NAME"
|
42 | 43 |
|
43 | 44 | docker build -f Dockerfile -t "$IMAGE_NAME_FULL" --no-cache --build-arg ENV_FILE="$ENV_FILE" --build-arg SERVICE_SECRET="$SERVICE_SECRET" --build-arg GITHUB_PAT="$GITHUB_PAT" ../.
|
|
0 commit comments