Skip to content

Commit e1f774a

Browse files
committed
Oppdaterer failover-config
1 parent d19c3b5 commit e1f774a

File tree

4 files changed

+22
-17
lines changed

4 files changed

+22
-17
lines changed

.failover/Dockerfile

+10-7
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,20 @@ ARG GITHUB_PAT
1212
ARG SERVICE_SECRET
1313
ARG ENV_FILE
1414

15-
COPY package*.json /failover/.npmrc /app/
16-
COPY server /app/server/
15+
COPY package*.json .failover/.npmrc /app/
16+
17+
COPY packages/server /app/packages/server/
18+
COPY packages/nextjs /app/packages/nextjs/
19+
COPY packages/shared /app/packages/shared/
1720

1821
RUN npm ci --ignore-scripts
1922
RUN rm -f .npmrc
2023

21-
COPY public /app/public/
22-
COPY src /app/src/
23-
COPY shared /app/shared/
24-
COPY next.config.js tsconfig.json .eslintrc.json /app/
25-
COPY "/failover/$ENV_FILE" /app/.env
24+
COPY ".failover/${ENV_FILE}" /app/.env
25+
# Also copy this .env file to the nextjs and server packages so they can
26+
# pick the environment variables as needed.
27+
COPY /app/.env /app/packages/nextjs/.env
28+
COPY /app/.env /app/packages/server/.env
2629

2730
RUN npm run build
2831

.failover/build-dev-failover-image.sh

+9-8
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
# Script for building failover-images for dev-environments
44
# 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.
912
#
1013
# Once the image is built, use the relevant deploy action on Github with the chosen
1114
# image name to deploy
@@ -24,20 +27,18 @@ fi
2427
if [[ "$APP_ENV" == "dev1" ]]
2528
then
2629
echo "Building image $IMAGE_NAME for dev1"
27-
SERVICE_SECRET=$(<.secret-dev1)
30+
SERVICE_SECRET=$NAV_ENONICXP_DEV1
2831
ENV_FILE=".env-dev1"
2932
elif [[ "$APP_ENV" == "dev2" ]]
3033
then
3134
echo "Building image $IMAGE_NAME for dev2"
32-
SERVICE_SECRET=$(<.secret-dev2)
35+
SERVICE_SECRET=$NAV_ENONICXP_DEV2
3336
ENV_FILE=".env-dev2"
3437
else
3538
echo "Invalid ENV specified, aborting"
3639
exit
3740
fi
3841

39-
GITHUB_PAT=$(<../.github-token)
40-
4142
IMAGE_NAME_FULL="ghcr.io/navikt/nav-enonicxp-frontend:$IMAGE_NAME"
4243

4344
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" ../.

.failover/testfile.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
testfile

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ og servere denne som en fallback.
7272

7373
Failover deployes ikke automatisk til dev-miljøer. For å bygge og deploye til et dev-miljø, gjør følgende:
7474

75-
- Legg inn relevante secrets lokalt som spesifisert i kommentarer i `/failover/build-dev-failover-image.sh`
76-
- Kjør `/failover/build-dev-failover-image.sh <dev1|dev2> <image-navn>`
75+
- Legg inn relevante secrets lokalt som spesifisert i kommentarer i `.failover/build-dev-failover-image.sh`
76+
- Kjør `./.failover/build-dev-failover-image.sh <dev1|dev2> <image-navn>`
7777
- Vent på at imaget bygges (det tar normalt 15-20 min)
7878
- Kjør Github workflow'en `deploy-failover.dev` med dev-miljøet og image-navnet du valgte som input
7979

0 commit comments

Comments
 (0)