Skip to content

Commit f855b4f

Browse files
authored
Merge pull request #40 from navikt/prod-deploy-xp-archive
Prod deploy xp archive
2 parents b6b06d4 + 4575b50 commit f855b4f

File tree

5 files changed

+83
-15
lines changed

5 files changed

+83
-15
lines changed

.github/workflows/xp-archive-deploy.yml .github/workflows/.xp-archive-deploy.yml

+25-14
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
1-
name: Build and deploy XP archive (dev)
1+
name: Build and deploy XP archive
22
on:
3-
workflow_dispatch:
4-
push:
5-
branches:
6-
- master
7-
paths:
8-
- package*.json
9-
- xp-archive/**/*
10-
- common/**/*
3+
workflow_call:
4+
inputs:
5+
naisEnv:
6+
required: true
7+
type: string
8+
VITE_APP_ORIGIN:
9+
required: true
10+
type: string
11+
XP_ORIGIN:
12+
required: true
13+
type: string
14+
HTML_RENDER_API:
15+
required: true
16+
type: string
17+
secrets:
18+
READER_TOKEN:
19+
required: true
20+
NAIS_WORKLOAD_IDENTITY_PROVIDER:
21+
required: true
1122

1223
jobs:
1324
build-and-deploy:
@@ -35,11 +46,11 @@ jobs:
3546
run: |
3647
cat > .env <<EOF
3748
NODE_ENV=production
38-
VITE_APP_ORIGIN=https://cms-arkiv.ansatt.dev.nav.no
3949
APP_PORT=3499
4050
APP_BASEPATH=/xp
41-
XP_ORIGIN=https://www.dev.nav.no
42-
HTML_RENDER_API=http://nav-enonicxp-frontend-dev1/render-from-props
51+
VITE_APP_ORIGIN=${{ inputs.VITE_APP_ORIGIN }}
52+
XP_ORIGIN=${{ inputs.XP_ORIGIN }}
53+
HTML_RENDER_API=${{ inputs.HTML_RENDER_API }}
4354
EOF
4455
- name: Build application
4556
run: npm run build
@@ -55,7 +66,7 @@ jobs:
5566
- name: Deploy application
5667
uses: nais/deploy/actions/deploy@v2
5768
env:
58-
CLUSTER: dev-gcp
69+
CLUSTER: ${{ inputs.naisEnv }}-gcp
5970
RESOURCE: xp-archive/.nais/config.yml
6071
VAR: image=${{ steps.docker-push.outputs.image }}
61-
VARS: xp-archive/.nais/vars/dev.yml
72+
VARS: xp-archive/.nais/vars/${{ inputs.naisEnv }}.yml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Build and deploy XP archive to dev
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- package*.json
9+
- xp-archive/**/*
10+
- common/**/*
11+
12+
jobs:
13+
build-and-deploy:
14+
name: Build and deploy to dev
15+
permissions:
16+
contents: "read"
17+
id-token: "write"
18+
uses: ./.github/workflows/.xp-archive-deploy.yml
19+
with:
20+
naisEnv: dev
21+
VITE_APP_ORIGIN: https://cms-arkiv.ansatt.dev.nav.no
22+
XP_ORIGIN: https://www.dev.nav.no
23+
HTML_RENDER_API: http://nav-enonicxp-frontend-dev1/render-from-props
24+
secrets:
25+
READER_TOKEN: ${{ secrets.READER_TOKEN }}
26+
NAIS_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build and deploy XP archive to prod
2+
on:
3+
workflow_dispatch:
4+
push:
5+
branches:
6+
- master
7+
paths:
8+
- package*.json
9+
- xp-archive/**/*
10+
- common/**/*
11+
12+
jobs:
13+
build-and-deploy:
14+
name: Build and deploy to prod
15+
permissions:
16+
contents: "read"
17+
id-token: "write"
18+
#if: github.event.release.target_commitish == 'master' // TODO: fix for workflow_dispatch
19+
uses: ./.github/workflows/.xp-archive-deploy.yml
20+
with:
21+
naisEnv: prod
22+
VITE_APP_ORIGIN: https://cms-arkiv.ansatt.nav.no
23+
XP_ORIGIN: https://www.nav.no
24+
HTML_RENDER_API: http://nav-enonicxp-frontend/render-from-props
25+
secrets:
26+
READER_TOKEN: ${{ secrets.READER_TOKEN }}
27+
NAIS_WORKLOAD_IDENTITY_PROVIDER: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}

xp-archive/.nais/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
labels:
88
team: personbruker
99
spec:
10-
image: {{image}}
10+
image: {{ image }}
1111
port: 3499
1212
ingresses:
1313
- {{ appOrigin }}/xp

xp-archive/.nais/vars/prod.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
appOrigin: https://cms-arkiv.ansatt.nav.no
2+
xpHost: www.nav.no
3+
xpFrontendApp: nav-enonicxp-frontend
4+
secret: nav-enonicxp

0 commit comments

Comments
 (0)