mirror of
https://github.com/dredx/prole.git
synced 2026-09-24 17:24:32 +00:00
- Implement Google OIDC support in Authority module via GoogleOAuthService - Update AuthProperties and application.yml with OIDC configuration - Add oidc-setup.md documentation for GKE/Google Cloud setup - Update etc/init_knoe_auth.sh to handle OIDC secrets and path-B configuration - Configure knoe-auth-deployment.yaml and gke.cfg for production auth Co-authored-by: Junie <junie@jetbrains.com>
12 lines
256 B
YAML
12 lines
256 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: knoe-auth-oidc
|
|
namespace: knoe-system
|
|
type: Opaque
|
|
stringData:
|
|
client-id: "${KNOE_AUTH_OIDC_CLIENT_ID}"
|
|
client-secret: "${KNOE_AUTH_OIDC_CLIENT_SECRET}"
|
|
signing-key: "${KNOE_AUTH_OIDC_SIGNING_KEY}"
|