mirror of
https://github.com/optim-enterprises-bv/siembol.git
synced 2025-10-30 01:52:52 +00:00
* remove unused configs, these dependencies are installed separately * remove, not needed * not used * docs for deployment * docs for deployment * docs for deployment * clean up * intendation * docs for deployment * kustomize and enabled apps docs * kustomize and enabled apps docs * resources as values * fix * fix * version, 2.4.0 is set by default * added docs for resources * added docs for resources * added separate page for customize * more docs * more docs * more docs * more docs * fix * fix * more docs * more docs * added new how to page Co-authored-by: Yassin Raman <yassin@gmail.co> Co-authored-by: yasram1 <yasram1@github.com>
29 lines
909 B
YAML
29 lines
909 B
YAML
# -----------------------------------------------------------------------------
|
|
# oauth2 proxy parameters
|
|
# -----------------------------------------------------------------------------
|
|
oauth2-proxy:
|
|
extraEnvVars:
|
|
- name: OAUTH2_PROXY_REDIRECT_URL
|
|
value: https://oauth-proxy.siembol.local/oauth2/callback
|
|
- name: OAUTH2_PROXY_CLIENT_ID
|
|
value: "Your Client ID"
|
|
- name: OAUTH2_PROXY_CLIENT_SECRET
|
|
value: "Your Client Secret"
|
|
- name: OAUTH2_PROXY_COOKIE_SECRET
|
|
value: "YOUR SECRET"
|
|
- name: OAUTH2_PROXY_COOKIE_DOMAIN
|
|
value: .siembol.local
|
|
- name: OAUTH2_PROXY_COOKIE_EXPIRE
|
|
value: 8h
|
|
- name: OAUTH2_PROXY_COOKIE_NAME
|
|
value: _siembol-oauth-proxy
|
|
ingress:
|
|
enabled: true
|
|
hosts:
|
|
- oauth-proxy.siembol.local
|
|
tls:
|
|
- secretName: oauth2-proxy-tls
|
|
hosts:
|
|
- oauth-proxy.siembol.local
|
|
redis:
|
|
enabled: false |