mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +07:00
Add Keycloak
This commit is contained in:
parent
1753053f64
commit
49b2f3d5a3
@ -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
|
||||
|
30
apps/resources/keycloak.yaml
Normal file
30
apps/resources/keycloak.yaml
Normal 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
|
Loading…
Reference in New Issue
Block a user