mirror of
https://github.com/mastodon/chart
synced 2025-05-17 20:43:21 +00:00
Merge branch 'main' into fix-common-fullname-error
This commit is contained in:
commit
0ed9007096
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,8 +1,16 @@
|
||||||
# 6.1.1
|
# 6.2.1
|
||||||
|
|
||||||
- Fixed some situations where disabling all bitnami charts caused it to error.
|
- Fixed some situations where disabling all bitnami charts caused it to error.
|
||||||
- Fixed a potential null postgresql host value error.
|
- Fixed a potential null postgresql host value error.
|
||||||
|
|
||||||
|
# 6.2.0
|
||||||
|
|
||||||
|
- Added ability to add pod labels to pods created from Deployment objects at the global level
|
||||||
|
|
||||||
|
# 6.1.1
|
||||||
|
|
||||||
|
- Updated the Mastodon version to v4.3.6
|
||||||
|
|
||||||
# 6.1.0
|
# 6.1.0
|
||||||
|
|
||||||
- Added a new job to re/build elasticsearch indices as a post-upgrade hook:
|
- Added a new job to re/build elasticsearch indices as a post-upgrade hook:
|
||||||
|
|
|
@ -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: 6.1.1
|
version: 6.2.1
|
||||||
|
|
||||||
# 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.3.5"
|
appVersion: "v4.3.6"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: elasticsearch
|
- name: elasticsearch
|
||||||
|
|
|
@ -53,6 +53,9 @@ spec:
|
||||||
{{- include "mastodon.globalLabels" $context | nindent 8 }}
|
{{- include "mastodon.globalLabels" $context | nindent 8 }}
|
||||||
{{- include "mastodon.selectorLabels" $context | nindent 8 }}
|
{{- include "mastodon.selectorLabels" $context | nindent 8 }}
|
||||||
{{- include "mastodon.statsdExporterLabels" $context | nindent 8 }}
|
{{- include "mastodon.statsdExporterLabels" $context | nindent 8 }}
|
||||||
|
{{- with $context.Values.mastodon.podLabels }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- with $context.Values.mastodon.sidekiq.podLabels }}
|
{{- with $context.Values.mastodon.sidekiq.podLabels }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -40,6 +40,9 @@ spec:
|
||||||
labels:
|
labels:
|
||||||
{{- include "mastodon.globalLabels" . | nindent 8 }}
|
{{- include "mastodon.globalLabels" . | nindent 8 }}
|
||||||
{{- include "mastodon.selectorLabels" . | nindent 8 }}
|
{{- include "mastodon.selectorLabels" . | nindent 8 }}
|
||||||
|
{{- with .Values.mastodon.podLabels }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.mastodon.streaming.podLabels }}
|
{{- with .Values.mastodon.streaming.podLabels }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -42,6 +42,9 @@ spec:
|
||||||
{{- include "mastodon.globalLabels" . | nindent 8 }}
|
{{- include "mastodon.globalLabels" . | nindent 8 }}
|
||||||
{{- include "mastodon.selectorLabels" . | nindent 8 }}
|
{{- include "mastodon.selectorLabels" . | nindent 8 }}
|
||||||
{{- include "mastodon.statsdExporterLabels" . | nindent 8 }}
|
{{- include "mastodon.statsdExporterLabels" . | nindent 8 }}
|
||||||
|
{{- with .Values.mastodon.podLabels }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.mastodon.web.podLabels }}
|
{{- with .Values.mastodon.web.podLabels }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -13,6 +13,8 @@ image:
|
||||||
mastodon:
|
mastodon:
|
||||||
# Labels added to every Mastodon-related object
|
# Labels added to every Mastodon-related object
|
||||||
labels: {}
|
labels: {}
|
||||||
|
# Labes added to every deployed mastodon pod
|
||||||
|
podLabels: {}
|
||||||
|
|
||||||
# -- create an initial administrator user; the password is autogenerated and will
|
# -- create an initial administrator user; the password is autogenerated and will
|
||||||
# have to be reset
|
# have to be reset
|
||||||
|
|
Loading…
Reference in New Issue
Block a user