Skip to content

Commit

Permalink
[bitnami/mastodon] Avoid mkdir issue when restarting (#31183)
Browse files Browse the repository at this point in the history
* [bitnami/mastodon] Avoid mkdir issue when restarting

Signed-off-by: David Gomez <[email protected]>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <[email protected]>

---------

Signed-off-by: David Gomez <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
  • Loading branch information
dgomezleon and bitnami-bot authored Dec 30, 2024
1 parent 668bd27 commit 3e3b679
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion bitnami/mastodon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## 9.1.1 (2024-12-30)

* [bitnami/mastodon] Avoid mkdir issue when restarting ([#31183](https://github.com/bitnami/charts/pull/31183))

## 9.1.0 (2024-12-10)

* [bitnami/mastodon] Detect non-standard images ([#30921](https://github.com/bitnami/charts/pull/30921))
* [bitnami/*] Add Bitnami Premium to NOTES.txt (#30854) ([3dfc003](https://github.com/bitnami/charts/commit/3dfc00376df6631f0ce54b8d440d477f6caa6186)), closes [#30854](https://github.com/bitnami/charts/issues/30854)
* [bitnami/mastodon] Detect non-standard images (#30921) ([eea0814](https://github.com/bitnami/charts/commit/eea08143bfe95dfbd356d5f5fa8eb663b9bf130e)), closes [#30921](https://github.com/bitnami/charts/issues/30921)

## <small>9.0.5 (2024-12-03)</small>

Expand Down
2 changes: 1 addition & 1 deletion bitnami/mastodon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ maintainers:
name: mastodon
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/mastodon
version: 9.1.0
version: 9.1.1
2 changes: 1 addition & 1 deletion bitnami/mastodon/templates/web/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ spec:
#!/bin/bash
# HACK: Mastodon does not allow having a /tmp directory world-writable, so we need to create a /tmp dir
# with more restricted permissions
mkdir /tmp/tmp-dir
mkdir -p /tmp/tmp-dir
{{- if .Values.defaultInitContainers.prepareDirs.resources }}
resources: {{- toYaml .Values.defaultInitContainers.prepareDirs.resources | nindent 12 }}
{{- else if ne .Values.defaultInitContainers.prepareDirs.resourcesPreset "none" }}
Expand Down

0 comments on commit 3e3b679

Please sign in to comment.