-
Notifications
You must be signed in to change notification settings - Fork 17
302 lines (300 loc) · 11.1 KB
/
ci.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
name: Galaxy Operator CI
on:
# push:
# branches:
# - '*'
# tags:
# - '*'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
# runs at 3:00 UTC daily
- cron: '00 3 * * *'
env:
COLORTERM: 'yes'
TERM: 'xterm-256color'
jobs:
insta:
runs-on: ubuntu-latest
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/ansible/galaxy-operator:main" >> $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
- 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/ansible/galaxy-operator:main
sudo -E docker images
shell: bash
- name: Test insta-demo
run: sudo -E insta-demo/pulp-insta-demo.sh -m
shell: bash
- name: Popeye
run: |
echo ::group::POPEYE
sudo wget https://github.com/derailed/popeye/releases/download/v0.10.0/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
components:
runs-on: ubuntu-latest
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/ansible/galaxy-operator:main" >> $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/ansible/galaxy-operator:main
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: Popeye
run: |
echo ::group::POPEYE
sudo wget https://github.com/derailed/popeye/releases/download/v0.10.0/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
galaxy:
runs-on: ubuntu-latest
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/ansible/galaxy-operator:main" >> $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/ansible/galaxy-operator:main
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: Popeye
run: |
echo ::group::POPEYE
sudo wget https://github.com/derailed/popeye/releases/download/v0.10.0/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: Check signing metadata
run: |
# ignoring the tests for now because of some galaxy container image issues
#.ci/scripts/signing_metadata.sh
shell: bash
- 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: Send Build details to Slack
id: slack
uses: slackapi/[email protected]
if: failure() && github.event_name == 'schedule'
with:
payload: |
{
"text": "Galaxy Operator CI ${{ job.status }}\nhttps://github.com/ansible/galaxy-operator/actions/runs/${{ github.run_id }}",
"blocks": [
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Galaxy Operator CI ${{ job.status }}\nhttps://github.com/ansible/galaxy-operator/actions/runs/${{ github.run_id }}"
}
}
]
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_PULP_CHANNEL }}
deploy:
runs-on: ubuntu-latest
needs: [insta, components, galaxy]
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
pip install httpie tweepy
echo ::endgroup::
echo "HTTPIE_CONFIG_DIR=$GITHUB_WORKSPACE/.ci/assets/httpie/" >> $GITHUB_ENV
echo "IMG=quay.io/ansible/galaxy-operator:main" >> $GITHUB_ENV
echo "CI_TEST=true" >> $GITHUB_ENV
shell: bash
- name: Build Operator
run: |
sudo -E make docker-build IMG=quay.io/ansible/galaxy-operator:main
sudo -E docker images
shell: bash
- name: Setting secrets
run: python3 .github/workflows/scripts/secrets.py "$SECRETS_CONTEXT"
env:
SECRETS_CONTEXT: ${{ toJson(secrets) }}
- name: Deploy images
run: .ci/scripts/deploy.sh
shell: bash
- name: Tweet
if: startsWith(github.ref, 'refs/tags/')
run: python .ci/scripts/tweet.py ${GITHUB_REF##*/}