Add Keycloak

This commit is contained in:
Khue Doan 2021-08-15 19:02:54 +00:00
parent 1753053f64
commit 49b2f3d5a3
2 changed files with 31 additions and 0 deletions

View File

@ -15,6 +15,7 @@ resources:
- resources/vault.yaml
- resources/drone.yaml
- resources/drone-runner-kube.yaml
- resources/keycloak.yaml
# Applications
- resources/gitea.yaml
- resources/wireguard.yaml

View File

@ -0,0 +1,30 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: keycloak
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
destination:
name: in-cluster
namespace: keycloak
source:
repoURL: https://charts.bitnami.com/bitnami
chart: keycloak
targetRevision: 4.1.3
helm:
values: |
ingress:
enabled: true
hostname: keycloak.khuedoan.com
proxyAddressForwarding: false # TODO Fix ingress proxy
auth:
adminUser: admin
adminPassword: "thisisfortesting" # TODO Fix Keycloak password
project: default
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true