71 lines
1.5 KiB
YAML
71 lines
1.5 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: dex
|
|
namespace: argocd
|
|
spec:
|
|
project: atlantis
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: atlantis
|
|
source:
|
|
repoURL: https://charts.dexidp.io
|
|
targetRevision: 0.16.0
|
|
chart: dex
|
|
helm:
|
|
values: |
|
|
replicaCount: 1
|
|
https:
|
|
enabled: false
|
|
grpc:
|
|
enabled: false
|
|
|
|
configSecret:
|
|
create: true
|
|
name: ""
|
|
config: {}
|
|
|
|
volumes:
|
|
- name: web
|
|
persistentVolumeClaim:
|
|
claimName: oceanbox-dex
|
|
volumeMounts:
|
|
- name: web
|
|
mountPath: /srv/dex/web
|
|
envVars: []
|
|
|
|
service:
|
|
annotations: {}
|
|
type: ClusterIP
|
|
clusterIP: ""
|
|
ports:
|
|
http:
|
|
port: 5556
|
|
nodePort:
|
|
https:
|
|
port: 5554
|
|
nodePort:
|
|
grpc:
|
|
port: 5557
|
|
nodePort:
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: nginx
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-staging
|
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
|
hosts:
|
|
- host: idp.beta.oceanbox.io
|
|
paths:
|
|
- path: /
|
|
pathType: ImplementationSpecific
|
|
tls:
|
|
- secretName: dex-tls
|
|
hosts:
|
|
- idp.beta.oceanbox.io
|
|
|
|
serviceMonitor:
|
|
enabled: true
|
|
|