blob: 7fb3e978d76b7fdce215a2bb7a7bfe05bc7efa46 [file] [log] [blame]
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +04001apiVersion: hydra.ory.sh/v1alpha1
2kind: OAuth2Client
3metadata:
4 name: {{ .Values.name }}
5 namespace: {{ .Release.Namespace }}
6spec:
7 secretName: {{ .Values.secretName }}
8 grantTypes: {{ .Values.grantTypes }}
9 responseTypes: {{ .Values.reponseTypes }}
10 scope: {{ .Values.scope }}
gio404e2372025-07-11 12:50:26 +040011 redirectUris:
12 {{- range .Values.redirectUris }}
13 - {{ . }}
14 {{- end}}
Giorgi Lekveishvilie009a5d2024-01-05 14:10:11 +040015 hydraAdmin:
16 endpoint: /admin/clients
17 forwardedProto: https
18 port: 80
19 url: {{ .Values.hydraAdmin }}
20 tokenEndpointAuthMethod: {{ .Values.tokenEndpointAuthMethod }}