33 lines
511 B
YAML
33 lines
511 B
YAML
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
|