File tree Expand file tree Collapse file tree 7 files changed +20
-3
lines changed Expand file tree Collapse file tree 7 files changed +20
-3
lines changed Original file line number Diff line number Diff line change
1
+ charts/wire-server: Optionally include backoffice
Original file line number Diff line number Diff line change
1
+ charts/backoffice: Fix version of frontend and auto-bump version of stern on every release
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ replicaCount: 1
2
2
images :
3
3
frontend :
4
4
repository : quay.io/wire/backoffice-frontend
5
- tag : 2.93 .0
5
+ tag : 2.87 .0
6
6
pullPolicy : IfNotPresent
7
7
stern :
8
8
repository : quay.io/wire/stern
9
- tag : 2.93.0
9
+ tag : do-not-use
10
10
pullPolicy : IfNotPresent
11
11
service :
12
12
internalPort : 8080
Original file line number Diff line number Diff line change @@ -15,6 +15,13 @@ dependencies:
15
15
# #######################
16
16
# # wire-servers/services
17
17
# #######################
18
+ - name : backoffice
19
+ version : " 0.0.42"
20
+ repository : " file://../backoffice"
21
+ tags :
22
+ - backoffice
23
+ - haskellServices
24
+ - services
18
25
- name : cannon
19
26
version : " 0.0.42"
20
27
repository : " file://../cannon"
Original file line number Diff line number Diff line change 11
11
legalhold : false
12
12
federator : false # see also galley.config.enableFederator and brig.config.enableFederator
13
13
sftd : false
14
+ backoffice : false
Original file line number Diff line number Diff line change 12
12
if [[ " $chart " == " nginz" ]]; then
13
13
# nginz has a different docker tag indentation
14
14
sed -i " s/^ tag: .*/ tag: $docker_tag /g" " $CHARTS_DIR /$chart /values.yaml"
15
+ elif [[ " $chart " == " backoffice" ]]; then
16
+ # There are two images at the same level and we want update only stern.
17
+ sed -i " s/tag: do-not-use/tag: $docker_tag /g" " $CHARTS_DIR /$chart /values.yaml"
15
18
else
16
19
sed -i " s/^ tag: .*/ tag: $docker_tag /g" " $CHARTS_DIR /$chart /values.yaml"
17
20
fi
Original file line number Diff line number Diff line change @@ -12,5 +12,9 @@ for chart in "${charts[@]}"; do
12
12
sed -i " s/^ tag: .*/ tag: $target_version /g" " $CHARTS_DIR /$chart /values.yaml"
13
13
done
14
14
15
- # special case nginz
15
+ # special case nginz
16
16
sed -i " s/^ tag: .*/ tag: $target_version /g" " $CHARTS_DIR /nginz/values.yaml"
17
+
18
+ # special case backoffice as there are two images at the same level and we want
19
+ # update only one.
20
+ sed -i " s/tag: do-not-use/tag: $target_version /g" " $CHARTS_DIR /backoffice/values.yaml"
You can’t perform that action at this time.
0 commit comments