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

chart内に昇格 #527

Merged
merged 1 commit into from
Mar 18, 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 infra/k8s/web/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
config.yaml
./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.
url: https://mk8stest.na2na.dev/
url: {{ .Values.service.host }}

# 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: postgres-cluster-rw.misskey.svc.cluster.local
port: 5432
host: {{ .Values.database.host }}
port: {{ .Values.database.port }}

# Database name
db: misskey
db: {{ .Values.database.db }}

# Auth
user: misskey
pass: misskey
user: {{ .Values.database.user }}
pass: {{ .Values.database.pass }}

# Whether disable Caching queries
#disableCache: true
Expand Down Expand Up @@ -152,6 +152,9 @@ data:

# Upload or download file size limits (bytes)
maxFileSize: 5000000000
# default: false
misskeyBlockMentionsFromUnfamiliarRemoteUsers: true


kind: ConfigMap
metadata:
Expand Down
8 changes: 8 additions & 0 deletions infra/k8s/web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ image:
tag: "2023.11.1-na2na-v4"
pullPolicy: Always

database:
host: "hoge.local"
port: 5432
db: "misskey"
user: "misskey"
pass: "misskey"

service:
host: "https://mk8stest.na2na.dev/"
type: NodePort
port: 3000
nodePort: 30000
Expand Down
Loading