forked from kiali/openshift-servicemesh-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
261 lines (216 loc) · 8.56 KB
/
release.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
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
name: Release
on:
schedule:
# Every Tuesday at 01:00 (UTC) which is the day after the server release is done. This action takes several hours to complete.
- cron: "00 1 * * TUE"
workflow_dispatch:
inputs:
plugin_quay_repository:
description: Plugin Quay repository
type: string
default: quay.io/kiali/ossmconsole
required: true
kiali_source_code_version:
description: The version of the Kiali source code to build with OSSMC. This is either a branch or tag name. The default is the version of the OSSMC release being built. This means by default the versions of the Kiali source and OSSMC will be the same.
type: string
required: false
jobs:
initialize:
name: Initialize
runs-on: ubuntu-20.04
outputs:
target_branch: ${{ github.ref_name }}
release_type: ${{ env.release_type }}
release_version: ${{ env.release_version }}
branch_version: ${{ env.branch_version }}
next_version: ${{ env.next_version }}
plugin_quay_tag: ${{ env.plugin_quay_tag }}
kiali_src_code_version: ${{ env.kiali_src_code_version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Prepare scripts
run: |
cat <<-EOF > bump.py
import sys
release_type = sys.argv[1]
version = sys.argv[2]
parts = version.split('.')
major = int(parts[0][1:])
minor = int(parts[1])
patch = int(parts[2])
if release_type == 'major':
major = major + 1
minor = 0
patch = 0
elif release_type == 'minor':
minor = minor + 1
patch = 0
elif release_type == 'patch':
patch = patch + 1
print('.'.join(['v' + str(major), str(minor), str(patch)]))
EOF
cat <<-EOF > minor.py
import datetime
base = int(datetime.datetime.strptime("24/04/2022", "%d/%m/%Y").timestamp())
now = int(datetime.datetime.now().timestamp())
diff = now - base
days_elapsed = int(diff / (24*60*60))
weeks_elapsed = int(days_elapsed / 7)
weeks_mod3 = int(weeks_elapsed % 3)
print(weeks_mod3)
EOF
- name: Determine release type
id: release_type
run: |
echo ${{ github.ref_name }}
if [[ "${{ github.ref_name }}" == "main" ]];
then
SPRINT_RELEASE=$(python minor.py)
if [[ $SPRINT_RELEASE == "1" ]] || [[ "${{github.event_name}}" != "schedule" ]]
then
echo "release_type=minor" >> $GITHUB_ENV
else
echo "release_type=skip" >> $GITHUB_ENV
fi
else
echo "release_type=patch" >> $GITHUB_ENV
fi
- name: Determine release version
if: ${{ env.release_type != 'skip' }}
env:
RELEASE_TYPE: ${{ env.release_type }}
id: release_version
run: |
RAW_VERSION=$(sed -rn 's/^VERSION \?= (.*)/\1/p' Makefile)
# Remove any pre release identifier (ie: "-SNAPSHOT")
RELEASE_VERSION=${RAW_VERSION%-*}
if [[ $RELEASE_TYPE == "patch" ]]
then
RELEASE_VERSION=$(python bump.py $RELEASE_TYPE $RELEASE_VERSION)
elif [[ $RELEASE_TYPE == "minor" ]]
then
RELEASE_VERSION=$RELEASE_VERSION
fi
echo "release_version=$RELEASE_VERSION" >> $GITHUB_ENV
- name: Determine next version
env:
RELEASE_TYPE: ${{ env.release_type }}
RELEASE_VERSION: ${{ env.release_version }}
id: next_version
if: ${{ env.release_type != 'skip' }}
run: |
if [[ $RELEASE_TYPE == "patch" ]]
then
NEXT_VERSION=$(python bump.py $RELEASE_TYPE $RELEASE_VERSION)
elif [[ $RELEASE_TYPE == "minor" ]]
then
NEXT_VERSION=$(python bump.py $RELEASE_TYPE $RELEASE_VERSION)
fi
echo "next_version=$NEXT_VERSION" >> $GITHUB_ENV
- name: Determine branch version
if: ${{ env.release_type != 'skip' }}
env:
RELEASE_VERSION: ${{ env.release_version }}
id: branch_version
run: echo "branch_version=$(echo $RELEASE_VERSION | sed 's/\.[0-9]*\+$//')" >> $GITHUB_ENV
- name: Determine Quay tag
if: ${{ env.release_type != 'skip' }}
env:
RELEASE_VERSION: ${{ env.release_version }}
BRANCH_VERSION: ${{ env.branch_version }}
id: quay_tag
run: |
if [ -z "${{ github.event.inputs.plugin_quay_repository }}" ];
then
PLUGIN_QUAY_REPO="quay.io/kiali/ossmconsole"
else
PLUGIN_QUAY_REPO="${{ github.event.inputs.plugin_quay_repository }}"
fi
PLUGIN_QUAY_TAG="$PLUGIN_QUAY_REPO:$RELEASE_VERSION $PLUGIN_QUAY_REPO:$BRANCH_VERSION"
echo "plugin_quay_tag=$PLUGIN_QUAY_TAG" >> $GITHUB_ENV
- name: Determine Kiali Source Code Version To Copy
env:
BRANCH_VERSION: ${{ env.branch_version }}
id: determine_kiali_src_code_version
run: |
if [ -z "${{ github.event.inputs.kiali_source_code_version }}" ];
then
KIALI_SRC_CODE_VERSION="$BRANCH_VERSION"
else
KIALI_SRC_CODE_VERSION="${{ github.event.inputs.kiali_source_code_version }}"
fi
echo "kiali_src_code_version=$KIALI_SRC_CODE_VERSION" >> $GITHUB_ENV
- name: Cleanup
run: rm bump.py minor.py
- name: Log information
run: |
echo "Release type: ${{ env.release_type }}"
echo "Release version: ${{ env.release_version }}"
echo "Next version: ${{ env.next_version }}"
echo "Branch version: ${{ env.branch_version }}"
echo "Plugin Quay tag: ${{ env.plugin_quay_tag }}"
echo "Kiali Source Code Version to Copy: ${{ env.kiali_src_code_version }}"
release:
name: Release
if: ${{ needs.initialize.outputs.release_type != 'skip' && ((github.event_name == 'schedule' && github.repository == 'kiali/openshift-servicemesh-plugin') || github.event_name != 'schedule') }}
runs-on: ubuntu-20.04
needs: [initialize]
env:
RELEASE_VERSION: ${{ needs.initialize.outputs.release_version }}
BRANCH_VERSION: ${{ needs.initialize.outputs.branch_version }}
NEXT_VERSION: ${{ needs.initialize.outputs.next_version }}
RELEASE_BRANCH: ${{ github.ref_name }}
PLUGIN_QUAY_TAG: ${{ needs.initialize.outputs.plugin_quay_tag }}
KIALI_SRC_CODE_VERSION: ${{ needs.initialize.outputs.kiali_src_code_version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
# /opt/hostedtoolcache directory is large and has tools we do not need so delete it to free up space
- name: Print disk space before
run: df -h
- name: Free up space
run: rm -rf /opt/hostedtoolcache
- name: Print disk space after
run: df -h
- name: Configure git
run: |
git config user.email '[email protected]'
git config user.name 'kiali-bot'
- name: Copy Kiali source code
run: |
hack/copy-frontend-src-to-ossmc.sh --source-ref "$KIALI_SRC_CODE_VERSION"
- name: Set version to release
run: |
hack/update-version-string.sh "$RELEASE_VERSION"
- name: Build and push images
run: |
docker login -u ${{ secrets.QUAY_USER }} -p ${{ secrets.QUAY_PASSWORD }} quay.io
make build-push-plugin-multi-arch
- name: Create tag
run: |
git add Makefile plugin/package.json plugin/plugin-metadata.ts
git commit -m "Release $RELEASE_VERSION"
git push origin $(git rev-parse HEAD):refs/tags/$RELEASE_VERSION
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create $RELEASE_VERSION -t "OpenShift Service Mesh Console $RELEASE_VERSION"
- name: Create or update version branch
run: git push origin $(git rev-parse HEAD):refs/heads/$BRANCH_VERSION
- name: Create a PR to prepare for next version
env:
BUILD_TAG: kiali-release-${{ github.run_number }}-main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ needs.initialize.outputs.release_type == 'minor' }}
run: |
hack/update-version-string.sh "${NEXT_VERSION}-SNAPSHOT"
git add Makefile plugin/package.json plugin/plugin-metadata.ts
git commit -m "Prepare for next version"
git push origin $(git rev-parse HEAD):refs/heads/$BUILD_TAG
gh pr create -t "Prepare for next version" -b "Please, merge to update version numbers and prepare for release $NEXT_VERSION." -H $BUILD_TAG -B $RELEASE_BRANCH