From 11986be197524b3037161374a9d9326ac2f5cf12 Mon Sep 17 00:00:00 2001 From: pieter Date: Fri, 21 Nov 2025 01:47:00 +0000 Subject: [PATCH] =?UTF-8?q?values.yaml=20=E3=82=92=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- values.yaml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/values.yaml b/values.yaml index 9845489..8cedbb1 100644 --- a/values.yaml +++ b/values.yaml @@ -15,16 +15,30 @@ image: # WordPress設定 wordpress: + # データベース設定 dbHost: mysql-service dbName: wordpress dbUser: wordpress # 本番環境ではSecretを使用してください dbPassword: "changeme" tablePrefix: wp_ + + # WordPress初期設定 + siteTitle: "My WordPress Site" + siteUrl: "http://localhost" + adminUser: "admin" + adminPassword: "" # 空の場合はランダム生成 + adminEmail: "admin@example.com" + + # ads.txt設定 + adsTxt: + enabled: false + content: | + # ads.txt content + # google.com, pub-0000000000000000, DIRECT, f08c47fec0942fa0 # Service設定 service: - # type: ClusterIP type: LoadBalancer port: 80 targetPort: 80 @@ -34,22 +48,12 @@ ingress: enabled: false className: nginx annotations: {} - # { - # acme.cert-manager.io/http01-ingress-class: "nginx", - # cert-manager.io/cluster-issuer: "letsencrypt-issuer", - # nginx.ingress.kubernetes.io/from-to-www-redirect: "true", - # nginx.ingress.kubernetes.io/proxy-body-size: "100m", - # nginx.ingress.kubernetes.io/rate-limit: "10" - # } hosts: - - host: wordpress.local + - host: wordpress.example.com paths: - path: / pathType: Prefix tls: [] - # - secretName: phpmyadmin-tls - # hosts: - # - phpmyadmin.local # PersistentVolume設定 persistence: