Skip to content

Commit f66cb46

Browse files
committedNov 18, 2024··
pipeline build og deploy for ung-sak-web
ved push på branch "dev-ung" vil ung-sak-web container bli bygd, pushed og deployed til dev-gcp.
1 parent 61a1872 commit f66cb46

File tree

4 files changed

+158
-72
lines changed

4 files changed

+158
-72
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Build and deploy ung-sak-web
2+
on:
3+
push:
4+
paths-ignore:
5+
- '**.md'
6+
- '.gitignore'
7+
- 'CODEOWNERS'
8+
branches:
9+
- dev-ung
10+
11+
jobs:
12+
build-deploy:
13+
name: Build and deploy Docker image
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: read
17+
id-token: write
18+
env:
19+
CLUSTER: dev-gcp
20+
steps:
21+
- name: Hente kode
22+
uses: actions/checkout@v4
23+
24+
- name: Setup + Install
25+
uses: ./.github/actions/setup-install
26+
with:
27+
npmAuthToken: ${{ secrets.READER_TOKEN }}
28+
29+
- name: Bygge dist
30+
run: yarn build:ung
31+
32+
- name: Build and push to docker registry
33+
uses: navikt/sif-gha-workflows/.github/actions/maven/build-push-docker-image@main
34+
id: docker-push
35+
with:
36+
image_base_name: 'ung-sak-web'
37+
additional-tag: 'latest' # For å få latest sjølv om vi ikkje ruller ut frå master branch endå. Fjernast når utrulling skal skje frå master.
38+
without_navikt_prefix: true
39+
#Konfigurerer for bygging av ung docker image:
40+
build-args: |
41+
featureToggles=ung.feature-toggles.json
42+
proxyConfig=ung.proxy.nginx
43+
appVariant=ung
44+
port=9005
45+
labels: |
46+
org.opencontainers.image.title=ung-sak-web
47+
org.opencontainers.image.description=Frontend for ung-sak
48+
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }}
49+
identity_provider: ${{ secrets.NAIS_WORKLOAD_IDENTITY_PROVIDER }}
50+
push-image: true
51+
- name: Deploy to nais
52+
uses: nais/deploy/actions/deploy@v2
53+
env:
54+
CLUSTER: ${{ env.CLUSTER }}
55+
RESOURCE: deploy/ung/${{ env.CLUSTER }}.yml
56+
VAR: image=${{ steps.docker-push.outputs.image }}

‎Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ FROM nginxinc/nginx-unprivileged:stable-alpine-slim
33
ARG proxyConfig=proxy.nginx
44
ARG featureToggles=feature-toggles.json
55
ARG appVariant=k9
6+
ARG port=9000
67

78
LABEL org.opencontainers.image.source=https://github.com/navikt/k9-sak-web
89

@@ -17,7 +18,7 @@ ENV APP_DIR="/app" \
1718

1819
COPY dist /usr/share/nginx/html
1920

20-
EXPOSE 9000
21+
EXPOSE $port
2122

2223
# using bash over sh for better signal-handling
2324
CMD sh /start-server.sh

‎deploy/ung/dev-gcp.yml

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
apiVersion: "nais.io/v1alpha1"
2+
kind: "Application"
3+
metadata:
4+
name: ung-sak-web
5+
namespace: k9saksbehandling
6+
labels:
7+
team: k9saksbehandling
8+
annotations:
9+
nais.io/run-as-user: "101" #nginx
10+
nais.io/read-only-file-system: "false" #nginx
11+
nginx.ingress.kubernetes.io/proxy-buffer-size: "32k"
12+
nginx.ingress.kubernetes.io/proxy-read-timeout: "600"
13+
nginx.ingress.kubernetes.io/proxy-send-timeout: "600"
14+
spec:
15+
image: {{ image }}
16+
port: 9005
17+
liveness:
18+
path: /isAlive
19+
initialDelay: 10
20+
readiness:
21+
path: /isReady
22+
initialDelay: 10
23+
replicas:
24+
disableAutoScaling: true
25+
min: 2
26+
max: 2
27+
resources:
28+
requests:
29+
cpu: 200m
30+
memory: 32Mi
31+
limits:
32+
memory: 64Mi
33+
ingresses:
34+
- "https://ung.intern.dev.nav.no"
35+
accessPolicy:
36+
outbound:
37+
rules:
38+
- application: ung-sak
39+
env:
40+
- name: APP_NAME
41+
value: ung-sak-web
42+
- name: APP_URL
43+
value: "http://ung-sak"
44+
- name: APP_PORT
45+
value: "9005"
46+
47+
# Feature-flag
48+
- name: KLAGE_KABAL
49+
value: "true"
50+
- name: VARSELTEKST
51+
value: "true"
52+
- name: DOKUMENTDATA
53+
value: "true"
54+
- name: UNNTAKSBEHANDLING
55+
value: "true"
56+
- name: KLAGEBEHANDLING
57+
value: "true"
58+
- name: TILBAKE
59+
value: "true"
60+
- name: SOKNADPERIODESTRIPE
61+
value: "false"
62+
- name: TYPE_MEDISINSKE_OPPLYSNINGER_BREV
63+
value: "true"
64+
- name: LOS_MARKER_BEHANDLING
65+
value: "true"
66+
- name: LOS_MARKER_BEHANDLING_SUBMIT
67+
value: "true"
68+
- name: AKSJONSPUNKT_9015
69+
value: "true"
70+
- name: ALDERSVILKAR_KRONISK_SYK
71+
value: "true"
72+
- name: FRITEKST_REDIGERING
73+
value: "true"
74+
- name: INKLUDER_KALENDER_PILS
75+
value: "true"
76+
- name: SKJUL_AVSLUTTET_ARBEIDSGIVER
77+
value: "true"
78+
- name: OMS_PUNSJSTRIPE
79+
value: "true"
80+
- name: OMSORGEN_FOR_PERIODISERT
81+
value: "true"
82+
- name: OVERSTYR_BEREGNING
83+
value: "true"
84+
- name: "BRUK_V2_MELDINGER"
85+
value: "true"
86+
- name: NYE_NOKKELTALL
87+
value: "true"
88+
- name: PROSESS_VILKAR_SOKNADSFRIST
89+
value: "true"
90+
- name: UTVIDET_VARSELFELT
91+
value: "true"
92+
- name: SKILL_UT_PRIVATPERSON
93+
value: "true"
94+
- name: AUTOMATISK_VURDERT_MEDLEMSKAP
95+
value: "true"
96+
- name: BRUK_V2_SAK_DOKUMENTER
97+
value: "true"
98+
- name: OPPTJENING_READ_ONLY_PERIODER
99+
value: "true"
100+

‎ung.proxy.nginx

-71
Original file line numberDiff line numberDiff line change
@@ -67,77 +67,6 @@ server {
6767
error_page 404 = @404_json;
6868
error_page 504 = @504_json;
6969
}
70-
# TODO Vurder om ein del av location deklarasjoner under her skal fjernast.
71-
location "/k9/formidling/" {
72-
proxy_set_header Host $http_host;
73-
proxy_pass "${APP_URL_K9FORMIDLING}";
74-
proxy_intercept_errors on;
75-
error_page 401 = @401_json;
76-
error_page 403 = @403_json;
77-
error_page 404 = @404_json;
78-
error_page 504 = @504_json;
79-
}
80-
81-
location "/k9/formidling/dokumentdata" {
82-
proxy_set_header Host $http_host;
83-
proxy_pass "${APP_URL_K9FORMIDLING_DD}";
84-
proxy_intercept_errors on;
85-
error_page 401 = @401_json;
86-
error_page 403 = @403_json;
87-
error_page 404 = @404_json;
88-
error_page 504 = @504_json;
89-
}
90-
91-
location "/k9/oppdrag/" {
92-
proxy_set_header Host $http_host;
93-
proxy_pass "${APP_URL_K9OPPDRAG}";
94-
proxy_intercept_errors on;
95-
error_page 401 = @401_json;
96-
error_page 403 = @403_json;
97-
error_page 404 = @404_json;
98-
error_page 504 = @504_json;
99-
}
100-
101-
location "/k9/klage/" {
102-
proxy_set_header Host $http_host;
103-
proxy_pass "${APP_URL_KLAGE}";
104-
proxy_intercept_errors on;
105-
error_page 401 = @401_json;
106-
error_page 403 = @403_json;
107-
error_page 404 = @404_json;
108-
error_page 504 = @504_json;
109-
}
110-
111-
location "/k9/tilbake/" {
112-
proxy_set_header Host $http_host;
113-
proxy_pass "${APP_URL_K9TILBAKE}";
114-
proxy_intercept_errors on;
115-
error_page 401 = @401_json;
116-
error_page 403 = @403_json;
117-
error_page 404 = @404_json;
118-
error_page 504 = @504_json;
119-
}
120-
121-
location "/k9/fordel/" {
122-
proxy_set_header Host $http_host;
123-
proxy_pass "${APP_URL_K9FORDEL}";
124-
proxy_intercept_errors on;
125-
error_page 401 = @401_json;
126-
error_page 403 = @403_json;
127-
error_page 404 = @404_json;
128-
error_page 504 = @504_json;
129-
}
130-
131-
location "/k9/endringslogg/" {
132-
proxy_ssl_server_name on;
133-
proxy_pass "${ENDRINGSLOGG_URL}";
134-
proxy_intercept_errors on;
135-
proxy_http_version 1.1;
136-
error_page 401 = @401_json;
137-
error_page 403 = @403_json;
138-
error_page 404 = @404_json;
139-
error_page 504 = @504_json;
140-
}
14170

14271
# If no asset matches, send it to your javascript app. Hopefully it's a route in the app!
14372
location @rewrites {

0 commit comments

Comments
 (0)
Please sign in to comment.