GitHub Auth
Please make sure to check the general Supabase GitHub social login docs to get an overview on how to prepare a GitHub OAuth2 app.
Example
The following example illustrates how you can configure the Core resource to enable GitHub social login support:
apiVersion: supabase.k8s.icb4dc0.de/v1alpha1
kind: Core
metadata:
# ...
spec:
# ...
auth:
# ...
providers:
github:
enabled: true
clientID: <your-client-id>
clientSecretRef:
name: <name-of-your-secret>
key: <key-of-client-secret>
# ...