| Giorgi Lekveishvili | 4ec4c02 | 2024-08-17 15:09:24 +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 }} |
| Giorgi Lekveishvili | 9e55054 | 2025-07-11 17:04:57 +0400 | [diff] [blame] | 11 | redirectUris: |
| Giorgi Lekveishvili | 59b7125 | 2025-07-11 16:54:17 +0400 | [diff] [blame] | 12 | {{- range .Values.redirectUris }} |
| 13 | - {{ . }} |
| 14 | {{- end}} |
| Giorgi Lekveishvili | 4ec4c02 | 2024-08-17 15:09:24 +0400 | [diff] [blame] | 15 | hydraAdmin: |
| 16 | endpoint: /admin/clients |
| 17 | forwardedProto: https |
| 18 | port: 80 |
| 19 | url: {{ .Values.hydraAdmin }} |
| 20 | tokenEndpointAuthMethod: {{ .Values.tokenEndpointAuthMethod }} |