values.yaml を更新

This commit is contained in:
2025-11-26 03:54:06 +00:00
parent b32d53a30a
commit f9b0162162

View File

@@ -73,13 +73,13 @@ ingress:
# - blog.example.com # - blog.example.com
# secretName: blog-example-com-tls # secretName: blog-example-com-tls
# PersistentVolume設定wp-contentのみ永続化 # PersistentVolume設定wp-contentのみ永続化 - bitnami方式
persistence: persistence:
enabled: true enabled: true
storageClass: "" storageClass: ""
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: 10Gi size: 10Gi
# 注意: WordPress本体ファイルはemptyDirに配置され、 # 注意: WordPress本体はemptyDirに配置(使い捨て)
# wp-contentディレクトリのみがPVCに永続化されます # wp-contentディレクトリのみがPVCに永続化されます
# リソース設定 # リソース設定
@@ -106,14 +106,18 @@ healthCheck:
httpGet: httpGet:
path: / path: /
port: 80 port: 80
initialDelaySeconds: 30 initialDelaySeconds: 60
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 6
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /
port: 80 port: 80
initialDelaySeconds: 10 initialDelaySeconds: 30
periodSeconds: 5 periodSeconds: 5
timeoutSeconds: 3
failureThreshold: 3
# Node Selector # Node Selector
nodeSelector: {} nodeSelector: {}