-
Notifications
You must be signed in to change notification settings - Fork 0
147 lines (131 loc) · 4.73 KB
/
dc-rest-push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: CI/CD dc-rest-push
on:
push:
paths:
- "collectors/rest-push/**"
- ".github/workflows/dc-rest-push.yml"
env:
WORKING_DIRECTORY: collectors/rest-push
DOCKER_IMAGE: ghcr.io/noi-techpark/opendatahub-collectors/dc-rest-push
DOCKER_TAG: ${{ github.sha }}
KUBERNETES_NAMESPACE: collector
jobs:
test:
runs-on: ubuntu-22.04
concurrency: dc-rest-push-test
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Run tests
run: sh run-tests.sh
working-directory: ${{env.WORKING_DIRECTORY}}/test
build:
runs-on: ubuntu-22.04
concurrency: dc-rest-push-build
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Build and push images
uses: noi-techpark/github-actions/docker-build-and-push@v2
with:
working-directory: ${{ env.WORKING_DIRECTORY }}/infrastructure
docker-username: ${{ github.actor }}
docker-password: ${{ secrets.GITHUB_TOKEN }}
deploy-test:
if: github.ref == 'refs/heads/main'
needs:
- test
- build
runs-on: ubuntu-22.04
concurrency: dc-rest-push-deploy-test
environment: test
env:
VALUES_YAML: collectors/rest-push/infrastructure/helm/values.yaml
K8S_NAME: dc-rest-push
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Write environment-specific Helm values
run: |
cat <<EOF > override.yml
image:
repository: ${{ env.DOCKER_IMAGE }}
tag: ${{ env.DOCKER_TAG }}
pullPolicy: "IfNotPresent"
env:
APP_LOGLEVEL: "INFO"
APP_SWAGGERURL: "https://swagger.opendatahub.testingmachine.eu/?url=https://push.api.dev.testingmachine.eu/apispec"
APP_AUTHURL: "https://auth.opendatahub.testingmachine.eu/auth"
APP_AUTHREALM: "noi"
APP_AUTHCLIENTID: "opendatahub-push"
APP_RABBITCLIENTNAME: "dc-rest-push"
EOF
# Merge yaml files https://mikefarah.gitbook.io/yq/operators/multiply-merge
yq -i '. *= load("override.yml")' ${{env.VALUES_YAML}}
- name: Deploy on cluster
uses: noi-techpark/github-actions/helm-deploy@v2
with:
k8s-name: ${{ env.K8S_NAME }}
k8s-namespace: collector
chart-path: ${{ env.WORKING_DIRECTORY}}/infrastructure/helm/rest-push
values-file: ${{ env.VALUES_YAML }}
aws-access-key-id: ${{ secrets.AWS_DEV_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_DEV_ACCESS_KEY_SECRET }}
aws-eks-cluster-name: aws-main-eu-01
aws-region: eu-west-1
deploy-prod:
if: github.ref == 'refs/heads/prod'
needs:
- test
- build
runs-on: ubuntu-22.04
concurrency: dc-rest-push-deploy-prod
environment: prod
env:
VALUES_YAML: collectors/rest-push/infrastructure/helm/values.yaml
K8S_NAME: dc-rest-push
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Write environment-specific Helm values
run: |
cat <<EOF > override.yml
image:
repository: ${{ env.DOCKER_IMAGE }}
tag: ${{ env.DOCKER_TAG }}
pullPolicy: "IfNotPresent"
env:
APP_LOGLEVEL: "INFO"
APP_SWAGGERURL: "https://swagger.opendatahub.com/?url=https://push.api.opendatahub.com/apispec"
APP_AUTHURL: "https://auth.opendatahub.com/auth"
APP_AUTHREALM: "noi"
APP_AUTHCLIENTID: "opendatahub-push"
APP_RABBITCLIENTNAME: "dc-rest-push"
ingress:
enabled: true
annotations:
cert-manager.io/issuer: "letsencrypt-prod"
className: nginx
tls:
- hosts:
- push.api.opendatahub.com
secretName: tls-rest-push
hosts:
- host: push.api.opendatahub.com
paths:
- path: "/"
pathType: Prefix
EOF
# Merge yaml files https://mikefarah.gitbook.io/yq/operators/multiply-merge
yq -i '. *= load("override.yml")' ${{env.VALUES_YAML}}
- name: Deploy on cluster
uses: noi-techpark/github-actions/helm-deploy@v2
with:
k8s-name: ${{ env.K8S_NAME }}
k8s-namespace: collector
chart-path: ${{ env.WORKING_DIRECTORY}}/infrastructure/helm/rest-push
values-file: ${{ env.VALUES_YAML }}
aws-access-key-id: ${{ secrets.AWS_PROD_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_PROD_ACCESS_KEY_SECRET }}
aws-eks-cluster-name: aws-main-eu-01
aws-region: eu-west-1