Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions chart/templates/auth.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ data:
KC_DB_USERNAME: keycloak
KC_DB_PASSWORD: keycloak
KC_PROXY: edge
KC_PROXY_HEADERS: xforwarded
KC_HOSTNAME: https://{{ .Values.domain }}:{{ .Values.port }}/auth
KC_HTTP_RELATIVE_PATH: /auth
KC_HEALTH_ENABLED: "true"
Expand Down
7 changes: 7 additions & 0 deletions docs/manual-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ spec:
services:
ingress:
type: LoadBalancer
externalTrafficPolicy: Local
deployment:
podTemplateSpec:
spec:
Expand All @@ -55,6 +56,12 @@ spec:
value: "256k"
- name: KONG_UNTRUSTED_LUA_SANDBOX_REQUIRES
value: "resty.jwt"
- name: KONG_TRUSTED_IPS
value: "0.0.0.0/0"
- name: KONG_REAL_IP_HEADER
value: "X-Forwarded-For"
- name: KONG_REAL_IP_RECURSIVE
value: "on"
EOF
```

Expand Down