diff --git a/charts/mastodon/Chart.yaml b/charts/mastodon/Chart.yaml index 1562006..d0dc4e3 100644 --- a/charts/mastodon/Chart.yaml +++ b/charts/mastodon/Chart.yaml @@ -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.0 +version: 9.5.1 # renovate: image=ghcr.io/mastodon/mastodon appVersion: v4.3.1 diff --git a/charts/mastodon/README.md b/charts/mastodon/README.md index 76e4463..8f3e8e6 100644 --- a/charts/mastodon/README.md +++ b/charts/mastodon/README.md @@ -1,6 +1,6 @@ # mastodon -![Version: 9.5.0](https://img.shields.io/badge/Version-9.5.0-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.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) Mastodon is a free, open-source social network server based on ActivityPub. @@ -138,8 +138,8 @@ Mastodon is a free, open-source social network server based on ActivityPub. | mastodon.smtp.tls | bool | `false` | | | mastodon.streaming.affinity | object | `{}` | Affinity for Streaming Pods, overwrites .Values.affinity | | mastodon.streaming.base_url | string | `nil` | The base url for streaming can be set if the streaming API is deployed to a different domain/subdomain. | -| mastodon.streaming.image.repository | string | `""` | | -| mastodon.streaming.image.tag | string | `""` | | +| mastodon.streaming.image.repository | string | `"ghcr.io/mastodon/mastodon-streaming"` | image repo for the mastodon streaming image | +| mastodon.streaming.image.tag | string | `""` | set a specific tag for mastodon-streaming image, defaults to appVersion in Chart.yaml | | mastodon.streaming.podSecurityContext | object | `{}` | Pod Security Context for Streaming Pods, overwrites .Values.podSecurityContext | | mastodon.streaming.port | int | `4000` | | | mastodon.streaming.replicas | int | `1` | Number of Streaming Pods running | diff --git a/charts/mastodon/dev-values.yaml b/charts/mastodon/dev-values.yaml index 85bb862..dd47629 100644 --- a/charts/mastodon/dev-values.yaml +++ b/charts/mastodon/dev-values.yaml @@ -183,7 +183,7 @@ mastodon: existingSecret: "" streaming: image: - repository: "" + repository: ghcr.io/mastodon/mastodon-streaming tag: "" port: 4000 # -- this should be set manually since os.cpus() returns the number of CPUs on diff --git a/charts/mastodon/values.yaml b/charts/mastodon/values.yaml index d35f855..5a83d25 100644 --- a/charts/mastodon/values.yaml +++ b/charts/mastodon/values.yaml @@ -240,9 +240,12 @@ mastodon: # -- Instead of defining server/login/password above, you can specify the name of an existing secret here. Login and # keys must be named `login`, `server`, `password` respectively. existingSecret: "" + streaming: image: - repository: "" + # -- image repo for the mastodon streaming image + repository: ghcr.io/mastodon/mastodon-streaming + # -- set a specific tag for mastodon-streaming image, defaults to appVersion in Chart.yaml tag: "" port: 4000 # -- this should be set manually since os.cpus() returns the number of CPUs on