From 79fc0d202037af1cc222b5ccf578c2428aaf55f3 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Tue, 15 Nov 2022 05:03:48 +0100 Subject: [PATCH] fix(mastodon): Add missing divider in sidekiq iteration This patch fixes the error that the for loop for the sidekiq deployments fails due to mixing up the YAML documents as it's missing a divider. --- charts/mastodon/Chart.yaml | 2 +- charts/mastodon/README.md | 2 +- charts/mastodon/templates/deployment-sidekiq.yaml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/charts/mastodon/Chart.yaml b/charts/mastodon/Chart.yaml index b442f0fc6..02da22d1a 100644 --- a/charts/mastodon/Chart.yaml +++ b/charts/mastodon/Chart.yaml @@ -15,7 +15,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: 3.0.1 +version: 3.0.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/mastodon/README.md b/charts/mastodon/README.md index f1a06c4f8..a66ab4f04 100644 --- a/charts/mastodon/README.md +++ b/charts/mastodon/README.md @@ -1,6 +1,6 @@ # mastodon -   +   Mastodon is a free, open-source social network server based on ActivityPub. diff --git a/charts/mastodon/templates/deployment-sidekiq.yaml b/charts/mastodon/templates/deployment-sidekiq.yaml index 9eebb4016..9675e5701 100644 --- a/charts/mastodon/templates/deployment-sidekiq.yaml +++ b/charts/mastodon/templates/deployment-sidekiq.yaml @@ -1,5 +1,6 @@ {{- $context := . }} {{- range .Values.mastodon.sidekiq.workers }} +--- apiVersion: apps/v1 kind: Deployment metadata: -- GitLab