2022-06-28 07:23:42 +00:00
|
|
|
apiVersion: hydra.ory.sh/v1alpha1
|
|
|
|
kind: OAuth2Client
|
|
|
|
metadata:
|
|
|
|
name: gitea-oauth-client
|
2024-01-23 21:50:41 +00:00
|
|
|
# Has to live in the same namespace as the stackspin-*-oauth-variables secret
|
2022-06-28 07:23:42 +00:00
|
|
|
namespace: flux-system
|
|
|
|
spec:
|
|
|
|
# TODO copied from wekan: https://github.com/wekan/wekan/wiki/Keycloak
|
|
|
|
grantTypes:
|
|
|
|
- authorization_code
|
|
|
|
- refresh_token
|
|
|
|
- client_credentials
|
|
|
|
- implicit
|
|
|
|
responseTypes:
|
|
|
|
- id_token
|
|
|
|
- code
|
|
|
|
scope: "openid profile email stackspin_roles"
|
|
|
|
secretName: stackspin-gitea-oauth-variables
|
2022-06-30 08:12:09 +00:00
|
|
|
redirectUris:
|
2022-07-18 11:40:14 +00:00
|
|
|
- https://code.${domain}/user/oauth2/Stackspin/callback
|
2022-06-30 07:29:07 +00:00
|
|
|
tokenEndpointAuthMethod: client_secret_post
|