3
0
mirror of https://github.com/mastodon/chart synced 2025-05-18 04:53:21 +00:00

fix(deps)!: upgrade app to Mastodon v4.3.0

BREAKING CHANGE: streaming service split from main image
This commit is contained in:
Jeremiah Lee 2024-10-11 18:14:12 +02:00
parent 4f85998722
commit b0ae6f8cc2
3 changed files with 7 additions and 5 deletions

View File

@ -15,12 +15,12 @@ type: application
# This is the chart version. This version number should be incremented each time # This is the chart version. This version number should be incremented each time
# you make changes to the chart and its templates, including the app version. # you make changes to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 5.5.2 version: 6.0.0
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using. # follow Semantic Versioning. They should reflect the version the application is using.
appVersion: "v4.2.13" appVersion: "v4.3.0"
dependencies: dependencies:
- name: elasticsearch - name: elasticsearch

View File

@ -70,7 +70,7 @@ spec:
securityContext: securityContext:
{{- toYaml . | nindent 12 }} {{- toYaml . | nindent 12 }}
{{- end }} {{- end }}
image: "{{ coalesce .Values.mastodon.streaming.image.repository .Values.image.repository }}:{{ coalesce .Values.mastodon.streaming.image.tag .Values.image.tag .Chart.AppVersion }}" image: "{{ .Values.mastodon.streaming.image.repository }}:{{ coalesce .Values.mastodon.streaming.image.tag .Values.image.tag .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
command: command:
- node - node

View File

@ -276,8 +276,10 @@ mastodon:
existingSecret: existingSecret:
streaming: streaming:
image: image:
repository: # streaming image split in Mastodon v4.3.0
tag: repository: ghcr.io/mastodon/mastodon-streaming
# other options: `latest` for the latest release or `edge` for most recent commit
tag: null
port: 4000 port: 4000
# -- this should be set manually since os.cpus() returns the number of CPUs on # -- this should be set manually since os.cpus() returns the number of CPUs on
# the node running the pod, which is unrelated to the resources allocated to # the node running the pod, which is unrelated to the resources allocated to