Skip to content
Snippets Groups Projects
Unverified Commit 02548ade authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

feat: update mastodon

parent 4c92c955
No related branches found
No related tags found
No related merge requests found
Pipeline #3043 passed
......@@ -2,5 +2,5 @@ apiVersion: v2
name: mastodon
description: Helm Chart for mastodon
type: application
version: 0.5.0
appVersion: "v4.2"
version: 0.6.2
appVersion: "v4.3"
......@@ -18,8 +18,8 @@ stringData:
# See: https://github.com/mastodon/mastodon/issues/16895
# Mode
RAILS_ENV: production
NODE_ENV: production
RAILS_ENV: "production"
NODE_ENV: "production"
# Federation and access
# ----------
......@@ -65,6 +65,14 @@ stringData:
VAPID_PRIVATE_KEY: "{{ .Values.keys.vapidPrivate }}"
VAPID_PUBLIC_KEY: "{{ .Values.keys.vapidPublic }}"
# Active Record Encryption
# --------
# Generate with `bin/rails db:encryption:init`
# --------
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY: "{{ .Values.keys.encryptionDeterministicKey }}"
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT: "{{ .Values.keys.encryptionDerivationSalt }}"
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY: "{{ .Values.keys.encryptionPrimaryKey }}"
# Sending mail
# ------------
SMTP_SERVER: "{{ .Values.smtp.hostname }}"
......
......@@ -17,7 +17,7 @@ web:
memory: 64Mi
streaming:
repository: tootsuite/mastodon
repository: tootsuite/mastodon-streaming
pullPolicy: Always
tag: ""
resources:
......@@ -52,6 +52,10 @@ keys:
# Generate with `rake mastodon:webpush:generate_vapid_key`
vapidPrivate: ""
vapidPublic: ""
# Generate with `bin/rails db:encryption:init`
encryptionDeterministicKey: ""
encryptionDerivationSalt: ""
encryptionPrimaryKey: ""
redis:
hostname: "example.com"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment