-
Notifications
You must be signed in to change notification settings - Fork 105
235 lines (230 loc) · 9.23 KB
/
integration-tests-with-dockerio.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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# Copyright 2018 The original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://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.
#
name: Integration Tests (docker.io)
env:
MAVEN_ARGS: -B -e
on:
push:
branches:
- main
jobs:
cache:
name: Cache
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Cache .m2 registry
uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-maven-
- name: Install artifacts
run: ./mvnw -f pom.xml ${MAVEN_ARGS} -DskipTests clean install
kubernetes:
name: Kubernetes Build
needs: cache
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
kubernetes: [v1.22.2]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Minikube-Kubernetes
uses: manusa/[email protected]
with:
minikube version: v1.23.2
kubernetes version: ${{ matrix.kubernetes }}
github token: ${{ secrets.GITHUB_TOKEN }}
driver: 'docker'
start args: '--force'
- name: Cache .m2 registry
uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-maven-
- name: Setup Java 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Dockerhub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERIO_USERNAME }}
password: ${{ secrets.DOCKERIO_PASSWORD }}
- name: Install the Service Binding Operator
run: |
curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.18.3/install.sh | bash -s v0.18.3
kubectl create -f https://operatorhub.io/install/service-binding-operator.yaml
until [[ "Succeeded" == `kubectl get csv -n operators | grep service-binding-operator | awk -F' ' '{print $7}'` ]]; do echo "Waiting for SBO"; sleep 5; done
kubectl get csv -n operators | grep service-binding-operator | awk -F" " '{print $7}'
- name: Install Knative
run: |
kubectl apply -f https://github.com/knative/serving/releases/download/knative-v1.2.0/serving-crds.yaml
kubectl apply -f https://github.com/knative/serving/releases/download/knative-v1.2.0/serving-core.yaml
- name: Install and Run Integration Tests
run: |
./mvnw -B clean install -Presources -Pwith-examples -Pwith-tests -Pwith-service-binding-examples -Pwith-knative-examples -Pwith-kubernetes-specific-examples -Duser.name=dekorateio -Dformat.skip=true -Ddocker-registry=docker.io
- name: Zip Artifacts
if: failure()
run: |
zip -R manifests-k8s-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
path: manifests-k8s-jvm${{ matrix.java }}.zip
openshift:
name: Openshift Build
needs: cache
# the action "manusa/[email protected]" only works in ubuntu-20.04
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
openshift: [v3.11.0]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup OpenShift
uses: manusa/[email protected]
with:
oc version: ${{ matrix.openshift }}
github token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache .m2 registry
uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}-${{ github.sha }}
restore-keys: ${{ runner.os }}-maven-
- name: Setup Java 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Dockerhub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERIO_USERNAME }}
password: ${{ secrets.DOCKERIO_PASSWORD }}
- name: Integration Tests
run: |
oc login -u admin -p admin
oc new-project itests
oc import-image fabric8/s2i-java:2.3 --from=docker.io/fabric8/s2i-java:2.3 --confirm
oc tag --source docker docker.io/fabric8/s2i-java:2.3 s2i-java:2.3
./mvnw -B clean install -Presources -Pwith-examples -Pwith-tests -Pwith-openshift-specific-examples -Duser.name=dekorateio -Dformat.skip=true -Ddocker-registry=docker.io
- name: Zip Artifacts
if: failure()
run: |
zip -R manifests-ocp-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
path: manifests-ocp-jvm${{ matrix.java }}.zip
tekton:
name: Tekton Build
needs: cache
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
kubernetes: [ v1.22.2 ]
tekton: [ v0.47.0 ]
steps:
- name: Checkout
uses: actions/[email protected]
- name: Get Date
id: get-date
run: |
echo "::set-output name=date::$(/bin/date -u "+%Y-%m")"
shell: bash
- name: Cache .m2 registry
uses: actions/[email protected]
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ steps.get-date.outputs.date }}
restore-keys: ${{ runner.os }}-maven-
- name: Setup Minikube-Kubernetes
uses: manusa/[email protected]
with:
minikube version: v1.23.2
kubernetes version: ${{ matrix.kubernetes }}
github token: ${{ secrets.GITHUB_TOKEN }}
driver: 'docker'
start args: '--force'
- name: Setup Java 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: Dockerhub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERIO_USERNAME }}
password: ${{ secrets.DOCKERIO_PASSWORD }}
- name: Install Tekton
run: |
kubectl apply -f https://github.com/tektoncd/pipeline/releases/download/${{ matrix.tekton }}/release.yaml
- name: Build
run: |
./mvnw -B clean install -Dformat.skip=true -DskipTests
- name: Run Tekton Integration Tests
run: |
kubectl create namespace tekton
kubectl config set-context --current --namespace=tekton
cd examples/spring-boot-with-tekton-example
# Build example
mvn clean install -DskipTests -Ddekorate.docker.registry=docker.io -Ddekorate.docker.group=dekorateio -Ddekorate.tekton.use-local-docker-config-json=true -Ddekorate.tekton.projectBuilderArguments=clean,install,-Pwith-examples,-DskipTests,-Dformat.skip=true,-pl,examples/spring-boot-with-tekton-example,-am
# Install Tekton Task manifests
kubectl apply -f target/classes/META-INF/dekorate/tekton-task.yml
# Trigger Task workflow
kubectl apply -f target/classes/META-INF/dekorate/tekton-task-run.yml
# Wait to finish
kubectl wait --for=condition=Succeeded --timeout=800s TaskRun/spring-boot-with-tekton-example-run-now
kubectl wait deployment spring-boot-with-tekton-example --for condition=Available=True --timeout=180s
# Verify application
RESULT=$(kubectl exec $(kubectl get pod -l app.kubernetes.io/name=spring-boot-with-tekton-example -o name) -- wget -qO- http://localhost:9090)
if [[ "$RESULT" = *"Hello world"* ]]
then
exit 0
fi
echo "Application is not working. Result was: $RESULT"
exit 1
- name: Print logs at failures
if: failure()
run: |
kubectl config set-context --current --namespace=tekton
echo "kubectl get pods: "
kubectl get pods
echo "kubectl describe TaskRun/spring-boot-with-tekton-example-run-now: "
kubectl describe TaskRun/spring-boot-with-tekton-example-run-now
echo "kubectl logs spring-boot-with-tekton-example-run-now-pod --all-containers --max-log-requests 10: "
kubectl logs spring-boot-with-tekton-example-run-now-pod --all-containers --max-log-requests 10
- name: Zip Artifacts
if: failure()
run: |
zip -R manifests-tekton-jvm${{ matrix.java }}.zip 'classes/META-INF/dekorate/*'
- uses: actions/upload-artifact@v4
if: failure()
with:
name: ci-manifests
path: manifests-tekton-jvm${{ matrix.java }}.zip