29 lines
692 B
YAML
29 lines
692 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: spoolman
|
|
namespace: argocd
|
|
spec:
|
|
destination:
|
|
namespace: spoolman
|
|
server: https://kubernetes.default.svc
|
|
project: apps
|
|
source:
|
|
chart: spoolman
|
|
helm:
|
|
values: |-
|
|
persistence:
|
|
enabled: true
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: 50Gi
|
|
storageClass: longhorn-fast
|
|
service:
|
|
annotations:
|
|
external-dns.alpha.kubernetes.io/hostname: spoolman.martyn.berlin
|
|
type: LoadBalancer
|
|
repoURL: https://ideaplexus.gitlab.io/charts
|
|
targetRevision: 2.4.0
|
|
syncPolicy:
|
|
automated:
|
|
selfHeal: true
|