values.yaml を追加

This commit is contained in:
2026-02-07 00:09:57 +00:00
parent c32b1ce3e1
commit cd3f9b22ce

32
values.yaml Normal file
View File

@@ -0,0 +1,32 @@
image:
registry: docker.io
repository: postgres
tag: "18.1-alpine3.22"
pullPolicy: IfNotPresent
replicaCount: 1
service:
type: ClusterIP
port: 5432
postgres:
database: mydb
user: postgres
# パスワードは必ずSecretで管理してください
existingSecret: ""
passwordKey: "postgres-password"
persistence:
enabled: true
storageClass: ""
accessMode: ReadWriteOnce
size: 8Gi
resources:
limits:
cpu: 1000m
memory: 1Gi
requests:
cpu: 500m
memory: 512Mi