currently for configuring gateway service only the port parameter is used to populate TargetPort and ServicePort. which is quite limiting in certain conditions
additionalContainerPorts:
- port: 9081
With added changes:
additionalContainerPorts:
- port: 8443
servicePort: 80 # optional, if not set uses `.port` value, hence it does not cause breaking changes
nodePort: 30303 # optional
currently for configuring gateway service only the port parameter is used to populate TargetPort and ServicePort. which is quite limiting in certain conditions
With added changes: