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
In case a service of type LoadBalancer is chosen, in the template the NodePort is required, why is that? - would it be possible to remove this dependency?
Would you be able to add host aliases to the helm chart? deployment.yaml
extraDeploy: []## @section Parameters## @param replicaCount Number of replicas (do not change it)replicaCount: 1hostAliases:
- ip: "XXXX"hostnames:
- "XXXXX"
The text was updated successfully, but these errors were encountered:
The node port is dynamic by default. I think it's mandatory to have a port on the node to allow the load balancing mode. How the external load balancer could contact the service without this node port?
Thank you ! @sebastien-prudhomme
Regarding the first point.
Its mandatory to use NodePort, but it is automatically managed by Kubernetes, and it will be automatically allocated if not specified.
Hi,
LoadBalancer
is chosen, in the template the NodePort is required, why is that? - would it be possible to remove this dependency?deployment.yaml
and then
values.yaml
The text was updated successfully, but these errors were encountered: