You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
Currently, there is no way of adding more container ports for the gateways whitelisting of ports feature as the "ports:
- containerPort: {{ .Values.gateway.containerPort }}" in the "tyk-hybrid/templates/deployment-gw-repset.yaml only accepts a single value rather than an array.
It would be solved by having:
gateway:
containerPort:
- 8443
- 2223
- 2224
Currently, there is no way of adding more container ports for the gateways whitelisting of ports feature as the "ports:
- containerPort: {{ .Values.gateway.containerPort }}" in the "tyk-hybrid/templates/deployment-gw-repset.yaml only accepts a single value rather than an array.
It would be solved by having:
gateway:
containerPort:
- 8443
- 2223
- 2224
extraEnvs:
- name: "TYK_GW_PORTSWHITELIST_PORTSWHITELIST_TCP_PORTS"
value: "2223,2224"
The text was updated successfully, but these errors were encountered: