values.yaml を更新
This commit is contained in:
28
values.yaml
28
values.yaml
@@ -15,6 +15,7 @@ image:
|
|||||||
|
|
||||||
# WordPress設定
|
# WordPress設定
|
||||||
wordpress:
|
wordpress:
|
||||||
|
# データベース設定
|
||||||
dbHost: mysql-service
|
dbHost: mysql-service
|
||||||
dbName: wordpress
|
dbName: wordpress
|
||||||
dbUser: wordpress
|
dbUser: wordpress
|
||||||
@@ -22,9 +23,22 @@ wordpress:
|
|||||||
dbPassword: "changeme"
|
dbPassword: "changeme"
|
||||||
tablePrefix: wp_
|
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設定
|
||||||
service:
|
service:
|
||||||
# type: ClusterIP
|
|
||||||
type: LoadBalancer
|
type: LoadBalancer
|
||||||
port: 80
|
port: 80
|
||||||
targetPort: 80
|
targetPort: 80
|
||||||
@@ -34,22 +48,12 @@ ingress:
|
|||||||
enabled: false
|
enabled: false
|
||||||
className: nginx
|
className: nginx
|
||||||
annotations: {}
|
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:
|
hosts:
|
||||||
- host: wordpress.local
|
- host: wordpress.example.com
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
tls: []
|
tls: []
|
||||||
# - secretName: phpmyadmin-tls
|
|
||||||
# hosts:
|
|
||||||
# - phpmyadmin.local
|
|
||||||
|
|
||||||
# PersistentVolume設定
|
# PersistentVolume設定
|
||||||
persistence:
|
persistence:
|
||||||
|
|||||||
Reference in New Issue
Block a user