Skip to content

Commit b0ae6f8

Browse files
committed
fix(deps)!: upgrade app to Mastodon v4.3.0
BREAKING CHANGE: streaming service split from main image
1 parent 4f85998 commit b0ae6f8

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ type: application
1515
# This is the chart version. This version number should be incremented each time
1616
# you make changes to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 5.5.2
18+
version: 6.0.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: "v4.2.13"
23+
appVersion: "v4.3.0"
2424

2525
dependencies:
2626
- name: elasticsearch

templates/deployment-streaming.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ spec:
7070
securityContext:
7171
{{- toYaml . | nindent 12 }}
7272
{{- end }}
73-
image: "{{ coalesce .Values.mastodon.streaming.image.repository .Values.image.repository }}:{{ coalesce .Values.mastodon.streaming.image.tag .Values.image.tag .Chart.AppVersion }}"
73+
image: "{{ .Values.mastodon.streaming.image.repository }}:{{ coalesce .Values.mastodon.streaming.image.tag .Values.image.tag .Chart.AppVersion }}"
7474
imagePullPolicy: {{ .Values.image.pullPolicy }}
7575
command:
7676
- node

values.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,10 @@ mastodon:
276276
existingSecret:
277277
streaming:
278278
image:
279-
repository:
280-
tag:
279+
# streaming image split in Mastodon v4.3.0
280+
repository: ghcr.io/mastodon/mastodon-streaming
281+
# other options: `latest` for the latest release or `edge` for most recent commit
282+
tag: null
281283
port: 4000
282284
# -- this should be set manually since os.cpus() returns the number of CPUs on
283285
# the node running the pod, which is unrelated to the resources allocated to

0 commit comments

Comments
 (0)