mirror of
https://github.com/amkartashov/gf-k8s.git
synced 2026-01-11 01:49:44 +00:00
oauth2-proxy fix
This commit is contained in:
parent
57b7368ace
commit
9d9d6cdbdd
1 changed files with 12 additions and 0 deletions
|
|
@ -4,12 +4,24 @@ oauth2-proxy:
|
||||||
clientSecret: change_in_argocd
|
clientSecret: change_in_argocd
|
||||||
cookieSecret: change_in_argocd
|
cookieSecret: change_in_argocd
|
||||||
configFile: |-
|
configFile: |-
|
||||||
|
# https://github.com/kubernetes/ingress-nginx/issues/2831#issuecomment-407336056
|
||||||
provider = "github"
|
provider = "github"
|
||||||
email_domains = [ "*" ]
|
email_domains = [ "*" ]
|
||||||
upstreams = [ "file:///dev/null" ]
|
upstreams = [ "file:///dev/null" ]
|
||||||
github_users = "amkartashov"
|
github_users = "amkartashov"
|
||||||
proxy_prefix = "/"
|
proxy_prefix = "/"
|
||||||
whitelist_domains = ".ioot.xyz"
|
whitelist_domains = ".ioot.xyz"
|
||||||
|
cookie_refresh = "1h"
|
||||||
|
cookie_expire = "168h0m"
|
||||||
|
cookie_secure = "true"
|
||||||
|
cookie_domains = ".ioot.xyz"
|
||||||
|
ssl_insecure_skip_verify = "true"
|
||||||
|
pass_basic_auth = "false"
|
||||||
|
pass_access_token = "true"
|
||||||
|
pass_user_headers = "true"
|
||||||
|
set_authorization_header = "true"
|
||||||
|
pass_authorization_header = "true"
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
annotations:
|
annotations:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue