35 lines
826 B
YAML
35 lines
826 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: vault
|
|
namespace: argocd
|
|
spec:
|
|
project: dev-tools
|
|
source:
|
|
repoURL: 'https://git.dvirlabs.com/dvirlabs/dev-tools.git'
|
|
targetRevision: HEAD
|
|
path: charts/vault
|
|
directory:
|
|
recurse: true
|
|
helm:
|
|
valueFiles:
|
|
- ../../manifests/vault/values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: dev-tools
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
ignoreDifferences:
|
|
- group: admissionregistration.k8s.io
|
|
kind: MutatingWebhookConfiguration
|
|
name: vault-agent-injector-cfg
|
|
jsonPointers:
|
|
- /webhooks/0/clientConfig/caBundle
|
|
- group: apps
|
|
kind: Deployment
|
|
name: vault-agent-injector
|
|
jsonPointers:
|
|
- /spec/template/metadata/annotations
|