Skip to content

Commit

Permalink
fix: update port values to strings in externalsecret.yaml and helmrel…
Browse files Browse the repository at this point in the history
…ease.yaml
  • Loading branch information
rafaribe committed Jan 4, 2025
1 parent 376cc50 commit 0f8596a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions kubernetes/main/apps/social/mastodon/app/externalsecret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ spec:
DB_USER: mastodon
DB_NAME: mastodon
DB_PASS: "{{ .POSTGRES_GENERIC_APP_PASSWORD }}"
DB_PORT: 5432
DB_PORT: "5432"
# Redis
REDIS_HOST: dragonfly.storage.svc.cluster.local
REDIS_PORT: 6379
REDIS_PORT: "6379"
# SMTP
SMTP_SERVER: smtp-relay-noreply.services.svc.cluster.local
SMTP_PORT: 25
SMTP_PORT: "25"
SMTP_FROM_ADDRESS: Mastodon <[email protected]>
# Logging
RAILS_LOG_LEVEL: warn
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/main/apps/social/mastodon/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
LOCAL_DOMAIN: rafaribe.com
ES_ENABLED: true
ES_HOST: mastodon-elasticsearch.social.svc.cluster.local
ES_PORT: 9200
ES_PORT: "9200"
S3_ENABLED: true
envFrom:
- secretRef:
Expand Down

0 comments on commit 0f8596a

Please sign in to comment.