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