mastodon: bump to v4.5.3, helm chart 6.6.3

This commit is contained in:
ace
2026-01-05 17:42:05 +03:00
parent 54bf53262d
commit c77693c0e1
16 changed files with 162 additions and 13 deletions

View File

@@ -11,6 +11,12 @@ image:
pullPolicy: IfNotPresent
mastodon:
logLevel:
# Set log level for the web and Sidekiq processes.
rails: info
# Set log level for the streaming process.
streaming: info
# Labels added to every Mastodon-related object
labels: {}
# Labes added to every deployed mastodon pod
@@ -141,6 +147,7 @@ mastodon:
# scalability, since it requires the Rails and Sidekiq pods to run on the
# same node.
accessMode: ReadWriteOnce
keepAfterDelete: true
resources:
requests:
storage: 10Gi
@@ -148,6 +155,7 @@ mastodon:
existingClaim:
system:
accessMode: ReadWriteOnce
keepAfterDelete: true
resources:
requests:
storage: 100Gi
@@ -162,6 +170,7 @@ mastodon:
existingSecret: ""
bucket: ""
endpoint: ""
protocol: https
hostname: ""
region: ""
permission: ""
@@ -625,8 +634,8 @@ elasticsearch:
# RAILS_ENV=production bundle exec rake chewy:sync
# (https://docs.joinmastodon.org/admin/optional/elasticsearch/)
enabled: true
# @ignored
image:
repository: bitnamilegacy/elasticsearch
tag: 7
# If you are using an external ES cluster, use `enabled: false` and set the hostname, port,
@@ -653,6 +662,15 @@ elasticsearch:
metrics:
nodeSelector: {}
caSecret: {}
# # caSecret.name is the name of the secret containing the CA certificate.
# name:
# # caSecret.key is the key in the secret containing the CA certificate.
# key: ca.crt
# elasticsearchIndexPrefix specifies the prefix for Elasticsearch indices used by this Mastodon server
# indexPrefix: ""
# Configuration for PostgreSQL.
# When enabled, the bitnami helm chart is used for PostgreSQL deployment, and
# all values here correspond to their values file. Please see the bitnami chart
@@ -666,6 +684,8 @@ postgresql:
# Please note that certain features do not work when enabling the included
# database, namely automatic schema creation when the app is first installed.
enabled: true
image:
repository: bitnamilegacy/postgresql
# postgresqlHostname: preexisting-postgresql
# postgresqlPort: 5432
@@ -727,6 +747,9 @@ redis:
# disable if you want to use an existing redis instance; in which case the
# values below must match those of that external redis instance
enabled: true
image:
registry: docker.io
repository: bitnamilegacy/redis
hostname: ""
port: 6379
auth:
@@ -913,6 +936,9 @@ podAnnotations: {}
# cause all pods to be recreated every `helm upgrade` regardless of whether their config or spec changes.
revisionPodAnnotation: true
# The labels set with jobLabels will be added to all mastodon job pods
jobLabels: {}
# The annotations set with jobAnnotations will be added to all mastodon job pods
jobAnnotations: {}