Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
na2na-p committed Aug 2, 2024
1 parent b72577e commit 74b2f74
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions infra/k8s/web/templates/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data:
#β”€β”€β”€β”˜ URL └─────────────────────────────────────────────────────
# Final accessible URL seen by a user.
hostUrl: "{{ .Values.misskey-cm.hostUrl }}"
url: "{{ .Values.misskeyCm.hostUrl }}"
# ONCE YOU HAVE STARTED THE INSTANCE, DO NOT CHANGE THE
# URL SETTINGS AFTER THAT!
Expand Down Expand Up @@ -37,15 +37,15 @@ data:
#β”€β”€β”€β”˜ PostgreSQL configuration └────────────────────────────────
db:
host: {{ .Values.misskey-cm.database.host }}
port: {{ .Values.misskey-cm.database.port }}
host: {{ .Values.misskeyCm.database.host }}
port: {{ .Values.misskeyCm.database.port }}
# Database name
db: {{ .Values.misskey-cm.database.db }}
db: {{ .Values.misskeyCm.database.db }}
# Auth
user: {{ .Values.misskey-cm.database.user }}
pass: {{ .Values.misskey-cm.database.pass }}
user: {{ .Values.misskeyCm.database.user }}
pass: {{ .Values.misskeyCm.database.pass }}
# Whether disable Caching queries
#disableCache: true
Expand All @@ -59,8 +59,8 @@ data:
#β”€β”€β”€β”˜ Redis configuration └─────────────────────────────────────
redis:
host: {{ .Values.misskey-cm.redis.host }}
port: {{ .Values.misskey-cm.redis.port }}
host: {{ .Values.misskeyCm.redis.host }}
port: {{ .Values.misskeyCm.redis.port }}
#family: 0 # 0=Both, 4=IPv4, 6=IPv6
#pass: example-pass
#prefix: example-prefix
Expand Down Expand Up @@ -154,7 +154,7 @@ data:
# Upload or download file size limits (bytes)
maxFileSize: 5000000000
# default: false
misskeyBlockMentionsFromUnfamiliarRemoteUsers: {{ .Values.misskey-cm.misskeyBlockMentionsFromUnfamiliarRemoteUsers }}
misskeyBlockMentionsFromUnfamiliarRemoteUsers: {{ .Values.misskeyCm.misskeyBlockMentionsFromUnfamiliarRemoteUsers }}
kind: ConfigMap
Expand Down
2 changes: 1 addition & 1 deletion infra/k8s/web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image:
tag: "2024.5.0-na2na-v3"
pullPolicy: IfNotPresent

misskey-cm:
misskeyCm:
hostUrl: "https://mk8stest.na2na.dev/"
database:
host: "hoge.local"
Expand Down

0 comments on commit 74b2f74

Please sign in to comment.