aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/platform/components/oauth2-proxy/components/oauth2-proxy/ci/tpl-values.yaml
blob: 65977d921be8b903731a5729cee4344aab914062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
extraEnv:
  - name: TEST_ENV_VAR_2
    value: '{{ $.Release.Name }}'
ingress:
  enabled: true
  hosts:
    - "{{ $.Release.Name }}.local"
  tls:
    - hosts:
        - "{{ $.Release.Name }}.local"
oauth2-proxy:
  checkDeprecation: false
  config:
    clientSecret: '{{ $.Release.Name }}'
    configFile: |
      oidc_issuer_url = "https://{{ $.Release.Name }}/dex"

pass_authorization_header: "true"

extraArgs:
  pass-authorization-header: "{{ $.Values.pass_authorization_header }}"