Skip to content

Commit

Permalink
Merge pull request #74 from small-hack/test-streaming-mode
Browse files Browse the repository at this point in the history
set `streaming.image.repository=ghcr.io/mastodon/mastodon-streaming` by default
  • Loading branch information
jessebot authored Oct 22, 2024
2 parents ae1f5ca + da233d6 commit 9581d0b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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.0
version: 9.5.1

# renovate: image=ghcr.io/mastodon/mastodon
appVersion: v4.3.1
Expand Down
6 changes: 3 additions & 3 deletions charts/mastodon/README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion charts/mastodon/dev-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion charts/mastodon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9581d0b

Please sign in to comment.