-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgres-helmchart.yaml
More file actions
33 lines (33 loc) · 1.18 KB
/
postgres-helmchart.yaml
File metadata and controls
33 lines (33 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# ──────────────────────────────────────────────────────────────
# PostgreSQL for Attic metadata
#
# Option A: Use this HelmChart resource if your cluster has the
# Helm controller (k3s/RKE2 built-in, or Fleet).
# Option B: helm install postgres bitnami/postgresql -n attic -f values below
# Option C: Point ATTIC_SERVER_DATABASE_URL at an existing PG instance.
# ──────────────────────────────────────────────────────────────
apiVersion: helm.cattle.io/v1
kind: HelmChart
metadata:
name: postgres
namespace: attic
spec:
repo: https://charts.bitnami.com/bitnami
chart: postgresql
version: "16.4.1" # pin to a known version
targetNamespace: attic
valuesContent: |-
auth:
username: attic
password: changeme
database: attic
primary:
persistence:
size: 5Gi
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 500m
memory: 512Mi