-
Notifications
You must be signed in to change notification settings - Fork 15
191 lines (174 loc) · 6.36 KB
/
app-test-charts.yaml
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
################################################################################
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
################################################################################
name: Perform Chart Tests
on:
workflow_call:
inputs:
node_image:
description: 'kindest/node image for k8s kind cluster'
default: 'kindest/node:v1.27.3'
required: false
type: string
upgrade_from:
description: 'chart version to upgrade from'
required: false
type: string
helm_version:
description: 'helm version to test (default = latest)'
default: 'latest'
required: false
type: string
workflow_dispatch:
inputs:
node_image:
description: 'kindest/node image for k8s kind cluster'
# k8s version from 3.1 release as default
default: 'kindest/node:v1.27.3'
required: false
type: string
upgrade_from:
description: 'chart version to upgrade from'
required: false
type: string
helm_version:
description: 'helm version to test (default = latest)'
default: 'latest'
required: false
type: string
pull_request:
branches:
- main
- release/**
paths:
- 'pom.xml'
- 'bpdm-**'
- 'charts/**'
push:
branches:
- main
- release/**
jobs:
build-apps:
uses: ./.github/workflows/docker-build-and-cache-all.yaml
execute-tests:
needs: build-apps
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Kubernetes KinD Cluster
uses: container-tools/kind-action@v2
with:
version: v0.20.0
node_image: ${{ github.event.inputs.node_image || 'kindest/node:v1.27.3' }}
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: ${{ github.event.inputs.helm_version || 'latest' }}
- uses: actions/setup-python@v5
with:
python-version: '3.9'
check-latest: true
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Download Pool Image
uses: actions/download-artifact@v4
with:
name: bpdm-pool-docker
path: /tmp
- name: Download Gate Image
uses: actions/download-artifact@v4
with:
name: bpdm-gate-docker
path: /tmp
- name: Download Orchestrator Image
uses: actions/download-artifact@v4
with:
name: bpdm-orchestrator-docker
path: /tmp
- name: Download Cleaning Service Dummy Image
uses: actions/download-artifact@v4
with:
name: bpdm-cleaning-service-dummy-docker
path: /tmp
- name: Push Pool Image to Kind
run: |
docker load --input /tmp/bpdm-pool.tar
docker image tag bpdm-pool:test kind-registry:5000/bpdm-pool:test
docker push kind-registry:5000/bpdm-pool:test
- name: Push Gate Image to Kind
run: |
docker load --input /tmp/bpdm-gate.tar
docker image tag bpdm-gate:test kind-registry:5000/bpdm-gate:test
docker push kind-registry:5000/bpdm-gate:test
- name: Push Orchestrator Image to Kind
run: |
docker load --input /tmp/bpdm-orchestrator.tar
docker image tag bpdm-orchestrator:test kind-registry:5000/bpdm-orchestrator:test
docker push kind-registry:5000/bpdm-orchestrator:test
- name: Push Cleaning Service Dummy Image to Kind
run: |
docker load --input /tmp/bpdm-cleaning-service-dummy.tar
docker image tag bpdm-cleaning-service-dummy:test kind-registry:5000/bpdm-cleaning-service-dummy:test
docker push kind-registry:5000/bpdm-cleaning-service-dummy:test
- name: Create Test Values
run: |
mkdir charts/bpdm/ci
cat <<EOF > charts/bpdm/ci/test-values.yaml
bpdm-pool:
image:
registry: kind-registry:5000
repository: bpdm-pool
tag: test
bpdm-gate:
image:
registry: kind-registry:5000
repository: bpdm-gate
tag: test
bpdm-orchestrator:
image:
registry: kind-registry:5000
repository: bpdm-orchestrator
tag: test
bpdm-cleaning-service-dummy:
image:
registry: kind-registry:5000
repository: bpdm-cleaning-service-dummy
tag: test
EOF
echo "cat charts/bpdm/ci/test-values.yaml"
cat charts/bpdm/ci/test-values.yaml
- name: Create Chart-Testing Config
run: |
cat <<EOF > .chart-testing-config.yaml
chart-repos:
- bitnami=https://charts.bitnami.com/bitnami
helm-extra-args: --timeout 600s
EOF
echo "cat .chart-testing-config.yaml"
cat .chart-testing-config.yaml
- name: Run chart-testing (install)
run: ct install --charts charts/bpdm --config .chart-testing-config.yaml
- name: Run helm upgrade
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add tractusx-dev https://eclipse-tractusx.github.io/charts/dev
helm install bpdm-test tractusx-dev/bpdm ${{ github.event.inputs.upgrade_from && '--version github.event.inputs.upgrade_from' || '' }}
helm dependency update charts/bpdm
helm upgrade --set centralidp.keycloak.postgresql.auth.postgresPassword=test --set centralidp.keycloak.postgresql.auth.password=test --set centralidp.keycloak.postgresql.auth.replicationPassword=test bpdm-test charts/bpdm