-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathkeycloak.yaml
More file actions
55 lines (55 loc) · 1.36 KB
/
Copy pathkeycloak.yaml
File metadata and controls
55 lines (55 loc) · 1.36 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: keycloak
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
project: default
source:
repoURL: https://charts.bitnami.com/bitnami
chart: keycloak
targetRevision: '*'
helm:
values: |
auth:
createAdminUser: true
adminUser: admin
adminPassword: admin
managementUser: manager
managementPassword: manager
proxyAddressForwarding: true
metrics:
enabled: true
serviceMonitor:
enabled: true
ingress:
enabled: true
hostname: keycloak.kind.cluster
annotations:
kubernetes.io/ingress.class: nginx
cert-manager.io/cluster-issuer: ca-issuer
tls: true
selfSigned: false
postgresql:
enabled: true
auth:
postgresPassword: password
password: password
metrics:
enabled: true
serviceMonitor:
enabled: true
destination:
server: https://kubernetes.default.svc
namespace: keycloak
revisionHistoryLimit: 3
syncPolicy:
syncOptions:
- ApplyOutOfSyncOnly=true
- CreateNamespace=true
- FailOnSharedResource=true
- PruneLast=true
automated:
prune: true
selfHeal: true