move dex here
This commit is contained in:
parent
37a294e7b4
commit
0a5da6898b
1 changed files with 40 additions and 0 deletions
40
app-of-apps/dex.yaml
Normal file
40
app-of-apps/dex.yaml
Normal file
|
|
@ -0,0 +1,40 @@
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: dex
|
||||||
|
namespace: argocd
|
||||||
|
spec:
|
||||||
|
destination:
|
||||||
|
namespace: auth
|
||||||
|
server: https://kubernetes.default.svc
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
chart: dex
|
||||||
|
helm:
|
||||||
|
values: |
|
||||||
|
# Configures the ingress for Dex
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
className: nginx
|
||||||
|
hosts:
|
||||||
|
- host: "auth.martyn.berlin"
|
||||||
|
paths:
|
||||||
|
- path: /dex
|
||||||
|
pathType: Prefix
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- "auth.martyn.berlin"
|
||||||
|
secretName: dex-cert
|
||||||
|
|
||||||
|
# Configures the Dex instance
|
||||||
|
configSecret:
|
||||||
|
create: false
|
||||||
|
name: dexconfig
|
||||||
|
repoURL: https://charts.dexidp.io
|
||||||
|
targetRevision: 0.23.0
|
||||||
|
syncPolicy:
|
||||||
|
automated:
|
||||||
|
prune: true
|
||||||
|
selfHeal: true
|
||||||
Loading…
Add table
Reference in a new issue