-
Notifications
You must be signed in to change notification settings - Fork 50
303 lines (300 loc) · 11.1 KB
/
pr.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
name: Pulp PR
on:
pull_request:
branches:
- '*'
env:
COLORTERM: 'yes'
TERM: 'xterm-256color'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: PR head repo
id: head_repo_name
run: |
HEAD_REPO_NAME=$(jq -r '.pull_request.head.repo.full_name' "$GITHUB_EVENT_PATH")
echo "PR head repo: $HEAD_REPO_NAME"
echo "::set-output name=repo::$HEAD_REPO_NAME"
- uses: actions/checkout@v2
with:
# by default, it uses a depth of 1
# this fetches all history so that we can read each commit
fetch-depth: 0
repository: ${{ steps.head_repo_name.outputs.repo }}
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: '3.8'
- name: Check commit message
if: github.event_name == 'pull_request'
env:
GITHUB_CONTEXT: ${{ github.event.pull_request.commits_url }}
run: |
echo ::group::REQUESTS
pip install pygithub
echo ::endgroup::
for sha in $(curl $GITHUB_CONTEXT | jq '.[].sha' | sed 's/"//g')
do
python .ci/scripts/validate_commit_message.py $sha
VALUE=$?
if [ "$VALUE" -gt 0 ]; then
exit $VALUE
fi
done
shell: bash
insta:
runs-on: ubuntu-latest
needs: lint
steps:
- name: PR head repo
id: head_repo_name
run: |
HEAD_REPO_NAME=$(jq -r '.pull_request.head.repo.full_name' "$GITHUB_EVENT_PATH")
echo "PR head repo: $HEAD_REPO_NAME"
echo "::set-output name=repo::$HEAD_REPO_NAME"
- uses: actions/checkout@v2
with:
# by default, it uses a depth of 1
# this fetches all history so that we can read each commit
fetch-depth: 0
repository: ${{ steps.head_repo_name.outputs.repo }}
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: '3.8'
- name: Install httpie
run: |
echo ::group::HTTPIE
sudo apt-get update -yq
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install httpie
echo ::endgroup::
echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/.ci/assets/httpie/" >> $GITHUB_ENV
echo "IMG=quay.io/pulp/pulp-operator:devel" >> $GITHUB_ENV
echo "CI_TEST=true" >> $GITHUB_ENV
echo "CI_TEST_IMAGE=minimal" >> $GITHUB_ENV
shell: bash
- name: Start minikube
run: |
minikube start --memory=max --cpus=max --vm-driver=docker --extra-config=apiserver.service-node-port-range=80-32000
minikube addons enable metrics-server
# now you can run kubectl to see the pods in the cluster
- name: Try the cluster !
run: kubectl get pods -A
- name: Setup a minikube docker env
run: minikube -p minikube docker-env | grep "export" | sed 's/export //' | sed 's/"//g' >> $GITHUB_ENV
- name: Uninstalling GHA kustomize
run: |
# hack for uninstalling kustomize from GHA
mv /usr/local/bin/kustomize /usr/local/bin/ghakustomize
make kustomize
mv ./bin/kustomize /usr/local/bin/kustomize
kustomize version
shell: bash
- name: Build Operator
run: |
sudo -E make docker-build IMG=quay.io/pulp/pulp-operator:devel
sudo -E docker images
shell: bash
- name: Test insta-demo
env:
FORKED_REPOSITORY: ${{ steps.head_repo_name.outputs.repo }}
run: sudo -E insta-demo/pulp-insta-demo.sh -m
shell: bash
- name: KubeLinter
run: .ci/scripts/kubelinter.sh
shell: bash
- name: Popeye
run: |
echo ::group::POPEYE
sudo wget https://github.com/derailed/popeye/releases/download/v0.9.7/popeye_Linux_x86_64.tar.gz
sudo tar -xvzf popeye_Linux_x86_64.tar.gz
sudo mv popeye /usr/local/bin/
sudo chmod +x /usr/local/bin/popeye
echo ::endgroup::
sudo popeye --kubeconfig ~/.kube/config || true
- name: Logs
if: always()
run: .github/workflows/scripts/show_logs.sh
# - name: Debugging example (uncomment when needed)
# if: failure()
# uses: mxschmitt/action-tmate@v3
components:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
IMAGE: [minimal, s6]
steps:
- uses: actions/checkout@v2
with:
# by default, it uses a depth of 1
# this fetches all history so that we can read each commit
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: '3.8'
- name: Install httpie
run: |
echo ::group::HTTPIE
sudo apt-get update -yq
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install httpie
echo ::endgroup::
echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/.ci/assets/httpie/" >> $GITHUB_ENV
echo "IMG=quay.io/pulp/pulp-operator:devel" >> $GITHUB_ENV
echo "CI_TEST=true" >> $GITHUB_ENV
echo "CI_TEST_IMAGE=${{ matrix.IMAGE }}" >> $GITHUB_ENV
shell: bash
- name: Start minikube
run: |
minikube start --memory=max --cpus=max --vm-driver=docker --extra-config=apiserver.service-node-port-range=80-32000
minikube addons enable metrics-server
# now you can run kubectl to see the pods in the cluster
- name: Try the cluster !
run: kubectl get pods -A
- name: Setup a minikube docker env
run: minikube -p minikube docker-env | grep "export" | sed 's/export //' | sed 's/"//g' >> $GITHUB_ENV
- name: Uninstalling GHA kustomize
run: |
# hack for uninstalling kustomize from GHA
mv /usr/local/bin/kustomize /usr/local/bin/ghakustomize
make kustomize
mv ./bin/kustomize /usr/local/bin/kustomize
kustomize version
shell: bash
- name: Build Operator
run: |
sudo -E make docker-build IMG=quay.io/pulp/pulp-operator:devel
sudo -E docker images
shell: bash
- name: Deploy pulp-operator to K8s
run: sudo -E ./up.sh
shell: bash
- name: Check and wait pulp-operator deploy
run: sudo -E time kubectl wait --for condition=Pulp-Operator-Finished-Execution pulp/example-pulp --timeout=-1s
shell: bash
- name: KubeLinter
run: .ci/scripts/kubelinter.sh
shell: bash
- name: Popeye
run: |
echo ::group::POPEYE
sudo wget https://github.com/derailed/popeye/releases/download/v0.9.7/popeye_Linux_x86_64.tar.gz
sudo tar -xvzf popeye_Linux_x86_64.tar.gz
sudo mv popeye /usr/local/bin/
sudo chmod +x /usr/local/bin/popeye
echo ::endgroup::
sudo popeye --kubeconfig ~/.kube/config || true
- name: Test all components
run: |
git clone --depth=1 https://github.com/pulp/pulp_ansible.git
git clone --depth=1 https://github.com/pulp/pulp_container.git
.ci/scripts/retry.sh 3 ".ci/scripts/pulp_tests.sh -m"
shell: bash
env:
PY_COLORS: '1'
- name: Logs
if: always()
run: .github/workflows/scripts/show_logs.sh
# - name: Debugging example (uncomment when needed)
# if: failure()
# uses: mxschmitt/action-tmate@v3
galaxy:
runs-on: ubuntu-latest
needs: lint
strategy:
fail-fast: false
matrix:
include:
- STORAGE: filesystem
IMAGE: minimal
- STORAGE: filesystem
IMAGE: s6
- STORAGE: azure
IMAGE: minimal
- STORAGE: s3
IMAGE: minimal
steps:
- uses: actions/checkout@v2
with:
# by default, it uses a depth of 1
# this fetches all history so that we can read each commit
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: '3.8'
- name: Install httpie
run: |
echo ::group::HTTPIE
sudo apt-get update -yq
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install httpie
echo ::endgroup::
echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/.ci/assets/httpie/" >> $GITHUB_ENV
echo "IMG=quay.io/pulp/pulp-operator:devel" >> $GITHUB_ENV
echo "CI_TEST=true" >> $GITHUB_ENV
echo "CI_TEST_STORAGE=${{ matrix.STORAGE }}" >> $GITHUB_ENV
echo "CI_TEST_IMAGE=${{ matrix.IMAGE }}" >> $GITHUB_ENV
echo "API_ROOT=/api/galaxy/pulp/" >> $GITHUB_ENV
shell: bash
- name: Start minikube
run: |
minikube start --memory=max --cpus=max --vm-driver=docker --extra-config=apiserver.service-node-port-range=80-32000
minikube addons enable metrics-server
# now you can run kubectl to see the pods in the cluster
- name: Try the cluster !
run: kubectl get pods -A
- name: Setup a minikube docker env
run: minikube -p minikube docker-env | grep "export" | sed 's/export //' | sed 's/"//g' >> $GITHUB_ENV
- name: Uninstalling GHA kustomize
run: |
# hack for uninstalling kustomize from GHA
mv /usr/local/bin/kustomize /usr/local/bin/ghakustomize
make kustomize
mv ./bin/kustomize /usr/local/bin/kustomize
kustomize version
shell: bash
- name: Build Operator
run: |
sudo -E make docker-build IMG=quay.io/pulp/pulp-operator:devel
sudo -E docker images
shell: bash
- name: Prepare Object Storage
run: |
.ci/scripts/prepare-object-storage.sh
shell: bash
- name: Deploy pulp-operator to K8s
run: sudo -E CI_TEST=galaxy ./up.sh
shell: bash
- name: Check and wait pulp-operator deploy
run: sudo -E time kubectl wait --for condition=Pulp-Operator-Finished-Execution pulp/example-pulp --timeout=-1s
shell: bash
- name: KubeLinter
run: .ci/scripts/kubelinter.sh
shell: bash
- name: Popeye
run: |
echo ::group::POPEYE
sudo wget https://github.com/derailed/popeye/releases/download/v0.9.7/popeye_Linux_x86_64.tar.gz
sudo tar -xvzf popeye_Linux_x86_64.tar.gz
sudo mv popeye /usr/local/bin/
sudo chmod +x /usr/local/bin/popeye
echo ::endgroup::
sudo popeye --kubeconfig ~/.kube/config || true
- name: Test
run: sudo -E .ci/scripts/galaxy_ng-tests.sh -m
shell: bash
- name: Backup & Restore
run: CI_TEST=galaxy .ci/scripts/backup_and_restore.sh -m
shell: bash
env:
PY_COLORS: '1'
- name: Logs
if: always()
run: .github/workflows/scripts/show_logs.sh
# - name: Debugging example (uncomment when needed)
# if: failure()
# uses: mxschmitt/action-tmate@v3