I have manually assigned a node port to a service like so… I’m running on Kube 1.27
spec:
type: NodePort
selector:
app: foo
ports:
- port: 1775
targetPort: 1775
nodePort: 31775
name: bar
If I understand the docs correctly, only if I pick the port I risk having a conflict. When Kubernetes tries to assign a node port it will see that 31775 is taken and try to assign another one or is the conflict both ways?