| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 1 | apiVersion: hydra.ory.sh/v1alpha1 |
| 2 | kind: OAuth2Client |
| 3 | metadata: |
| 4 | name: {{ .Values.name }} |
| 5 | namespace: {{ .Release.Namespace }} |
| 6 | spec: |
| 7 | secretName: {{ .Values.secretName }} |
| 8 | grantTypes: {{ .Values.grantTypes }} |
| 9 | responseTypes: {{ .Values.reponseTypes }} |
| 10 | scope: {{ .Values.scope }} |
| gio | 404e237 | 2025-07-11 12:50:26 +0400 | [diff] [blame^] | 11 | redirectUris: |
| 12 | {{- range .Values.redirectUris }} |
| 13 | - {{ . }} |
| 14 | {{- end}} |
| Giorgi Lekveishvili | e009a5d | 2024-01-05 14:10:11 +0400 | [diff] [blame] | 15 | hydraAdmin: |
| 16 | endpoint: /admin/clients |
| 17 | forwardedProto: https |
| 18 | port: 80 |
| 19 | url: {{ .Values.hydraAdmin }} |
| 20 | tokenEndpointAuthMethod: {{ .Values.tokenEndpointAuthMethod }} |