27 lines
590 B
YAML
27 lines
590 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: postgres
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: "https://charts.bitnami.com/bitnami"
|
|
chart: postgresql
|
|
targetRevision: "16.5.0"
|
|
helm:
|
|
values: |-
|
|
fullnameOverride: "postgres"
|
|
persistence:
|
|
enabled: true
|
|
storageClass: "longhorn"
|
|
size: 30Gi
|
|
postgresqlPassword: "beelover"
|
|
destination:
|
|
server: "https://kubernetes.default.svc"
|
|
namespace: postgres
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|