Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(foundry-vtt): deployment wasn't adding a volume for data if s3 was disabled #25

Merged
merged 2 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The Applications we offer at the moment are listed down here. Watch this website
- `Prometheus PVE [email protected]`
- `Prometheus Haproxy [email protected]`
- `[email protected]`
- `[email protected].3`
- `[email protected].4`

### License

Expand Down
2 changes: 1 addition & 1 deletion charts/foundry-vtt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: foundry-vtt
description: Foundry Virtual Tabletop
type: application
version: 0.1.3
version: 0.1.4
appVersion: "v10.288"
keywords:
- game
Expand Down
2 changes: 1 addition & 1 deletion charts/foundry-vtt/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ spec:
secretName: {{ include "foundry-vtt.fullname" . }}-aws
{{- else }}
secretName: {{ .Values.foundryvtt.s3.existingSecret }}
{{- end }}
{{- end }}
- name: data
{{- if .Values.persistence.enabled }}
Expand All @@ -225,4 +226,3 @@ spec:
{{- else }}
emptyDir: { }
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion hugo/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The Applications we offer at the moment are listed down here. Watch this website
- ```Prometheus PVE [email protected]```
- ```Prometheus Haproxy [email protected]```
- ```[email protected]```
- ```[email protected].1```
- ```[email protected].4```

#### License

Expand Down
Loading