You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.1 KiB

  1. # Introduction
  2. This is a [Helm](https://helm.sh/) chart for installing Mastodon into a
  3. Kubernetes cluster. The basic usage is:
  4. 1. edit `values.yaml` or create a separate yaml file for custom values
  5. 1. `helm dep update`
  6. 1. `helm install --namespace mastodon --create-namespace my-mastodon ./ -f path/to/additional/values.yaml`
  7. This chart has been tested on Helm 3.0.1 and above.
  8. # Configuration
  9. The variables that _must_ be configured are:
  10. - password and keys in the `mastodon.secrets`, `postgresql`, and `redis` groups; if
  11. left blank, some of those values will be autogenerated, but will not persist
  12. across upgrades.
  13. - SMTP settings for your mailer in the `mastodon.smtp` group.
  14. # Missing features
  15. Currently this chart does _not_ support:
  16. - Hidden services
  17. - Single Sign-On
  18. - Swift
  19. - configurations using `WEB_DOMAIN`
  20. # Upgrading
  21. Because database migrations are managed as a Job separate from the Rails and
  22. Sidekiq deployments, it’s possible they will occur in the wrong order. After
  23. upgrading Mastodon versions, it may sometimes be necessary to manually delete
  24. the Rails and Sidekiq pods so that they are recreated against the latest
  25. migration.