forked from k-space/kube
24 lines
599 B
YAML
24 lines
599 B
YAML
---
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: cnpg # aka in-cluster postgres
|
|
namespace: argocd
|
|
spec:
|
|
project: k-space.ee
|
|
source:
|
|
repoURL: https://github.com/cloudnative-pg/cloudnative-pg
|
|
targetRevision: v1.25.1
|
|
path: releases
|
|
directory:
|
|
include: 'cnpg-1.25.1.yaml'
|
|
destination:
|
|
server: 'https://kubernetes.default.svc'
|
|
namespace: cnpg-system
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- ServerSideApply=true # Resource is too big to fit in 262144 bytes allowed annotation size.
|