Skip to content

Commit

Permalink
✨ osu-server-beatmap-submission-deploy: Add S3 region env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePooN committed Feb 18, 2025
1 parent c77798e commit 784362a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion osu/osu-server-beatmap-submission/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 2025.213.2
version: 2025.218.0

# 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
Expand Down
2 changes: 2 additions & 0 deletions osu/osu-server-beatmap-submission/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ data:
S3_ACCESS_KEY: {{ .Values.config.storage.s3.key | b64enc | quote }}
S3_SECRET_KEY: {{ .Values.config.storage.s3.secret | b64enc | quote }}
S3_CENTRAL_BUCKET_NAME: {{ .Values.config.storage.s3.centralBucketName | b64enc | quote }}
S3_CENTRAL_BUCKET_REGION: {{ .Values.config.storage.s3.centralBucketRegion | b64enc | quote }}
S3_BEATMAPS_BUCKET_NAME: {{ .Values.config.storage.s3.beatmapsBucketName | b64enc | quote }}
S3_BEATMAPS_BUCKET_REGION: {{ .Values.config.storage.s3.beatmapsBucketRegion | b64enc | quote }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions osu/osu-server-beatmap-submission/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ config:
key: "" # S3_ACCESS_KEY
secret: "" # S3_SECRET_KEY
centralBucketName: "" # S3_CENTRAL_BUCKET_NAME
centralBucketRegion: "" # S3_CENTRAL_BUCKET_REGION
beatmapsBucketName: "" # S3_BEATMAPS_BUCKET_NAME
beatmapsBucketRegion: "" # S3_BEATMAPS_BUCKET_REGION

# This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/
replicaCount: 1
Expand Down

0 comments on commit 784362a

Please sign in to comment.