From cd3f9b22ce284a48dbd83413d1521a786ad2173c Mon Sep 17 00:00:00 2001 From: pieter Date: Sat, 7 Feb 2026 00:09:57 +0000 Subject: [PATCH] =?UTF-8?q?values.yaml=20=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- values.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 values.yaml diff --git a/values.yaml b/values.yaml new file mode 100644 index 0000000..4308f6f --- /dev/null +++ b/values.yaml @@ -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