Skip to content

Commit c76d289

Browse files
committed
La til prod deploy for sync job
1 parent 7686270 commit c76d289

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

.github/workflows/arbeidssoekere-synk-jobb.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,22 @@ jobs:
7373
CLUSTER: dev-gcp
7474
RESOURCE: ./jobs/${{ env.MODULE }}/nais/nais-dev.yaml
7575
VAR: image=${{ needs.build.outputs.image }}
76+
77+
deploy-prod:
78+
if: github.ref == 'refs/heads/main'
79+
name: Deploy to prod-gcp
80+
needs:
81+
- build
82+
permissions:
83+
contents: read
84+
id-token: write
85+
runs-on: ubuntu-latest
86+
steps:
87+
- name: Checkout
88+
uses: actions/checkout@v4
89+
- name: Deploy to GCP
90+
uses: nais/deploy/actions/deploy@v2
91+
env:
92+
CLUSTER: prod-gcp
93+
RESOURCE: ./jobs/${{ env.MODULE }}/nais/nais-prod.yaml
94+
VAR: image=${{ needs.build.outputs.image }}

apps/api-start-stopp-perioder/nais/nais-prod.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ spec:
6565
- application: aia-backend
6666
- application: arbeidssokerregistrering
6767
- application: arbeidssokerregistrering-for-veileder
68+
- application: paw-arbeidssoekere-synk-jobb
6869
outbound:
6970
rules:
7071
- application: paw-kafka-key-generator
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
apiVersion: nais.io/v1
2+
kind: Naisjob
3+
metadata:
4+
name: paw-arbeidssoekere-synk-jobb
5+
namespace: paw
6+
labels:
7+
team: paw
8+
spec:
9+
image: {{ image }}
10+
restartPolicy: Never
11+
resources:
12+
requests:
13+
cpu: 200m
14+
memory: 256Mi
15+
secureLogs:
16+
enabled: true
17+
observability:
18+
autoInstrumentation:
19+
enabled: true
20+
runtime: java
21+
azure:
22+
application:
23+
enabled: true
24+
filesFrom:
25+
- secret: paw-arbeidssoekere-synk-jobb-csv
26+
mountPath: /var/run/secrets/paw-arbeidssoekere-synk-jobb-csv
27+
gcp:
28+
sqlInstances:
29+
- type: POSTGRES_17
30+
tier: db-custom-1-6144
31+
databases:
32+
- name: pawarbeidssoekeresynk
33+
accessPolicy:
34+
outbound:
35+
rules:
36+
- application: paw-arbeidssokerregisteret-api-inngang

0 commit comments

Comments
 (0)