Skip to content

Commit

Permalink
Merge pull request #75 from small-hack/fix-precompile-volume-perm
Browse files Browse the repository at this point in the history
Disable precompile job by default
  • Loading branch information
jessebot authored Oct 22, 2024
2 parents 9581d0b + 728a2a3 commit 517e9d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/mastodon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type: application
# 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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 9.5.1
version: 9.5.2

# renovate: image=ghcr.io/mastodon/mastodon
appVersion: v4.3.1
Expand Down
4 changes: 2 additions & 2 deletions charts/mastodon/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# mastodon

![Version: 9.5.1](https://img.shields.io/badge/Version-9.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.3.1](https://img.shields.io/badge/AppVersion-v4.3.1-informational?style=flat-square)
![Version: 9.5.2](https://img.shields.io/badge/Version-9.5.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v4.3.1](https://img.shields.io/badge/AppVersion-v4.3.1-informational?style=flat-square)

Mastodon is a free, open-source social network server based on ActivityPub.

Expand Down Expand Up @@ -58,7 +58,7 @@ Mastodon is a free, open-source social network server based on ActivityPub.
| mastodon.deepl.plan | string | `""` | |
| mastodon.extraVolumeMounts | list | `[]` | optional extra volume mounts for the mastodon web pod |
| mastodon.extraVolumes | list | `[]` | optional extra volumes for the mastodon web pod |
| mastodon.hooks.assetsPrecompile.enabled | bool | `true` | |
| mastodon.hooks.assetsPrecompile.enabled | bool | `false` | disabled by default, see [mastodon/chart:#158](https://github.com/mastodon/chart/issues/158#issuecomment-2429186438) |
| mastodon.hooks.dbMigrate.enabled | bool | `true` | |
| mastodon.hooks.s3Upload.acl | string | `"public-read"` | |
| mastodon.hooks.s3Upload.bucket | string | `nil` | |
Expand Down
3 changes: 2 additions & 1 deletion charts/mastodon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ mastodon:
dbMigrate:
enabled: true
assetsPrecompile:
enabled: true
# -- disabled by default, see [mastodon/chart:#158](https://github.com/mastodon/chart/issues/158#issuecomment-2429186438)
enabled: false
# Upload website assets to S3 before deploying using rclone.
# Whenever there is an update to Mastodon, sometimes there are assets files
# that are renamed. As the pods are getting redeployed, and old/new pods are
Expand Down

0 comments on commit 517e9d5

Please sign in to comment.