We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When user want to export service node port, It should write following conf:
service: type: NodePort ports: - name: http-port # fill the name from the fe proxy service ports containerPort: 8080 nodePort: 30180 port: 8080
name is required field, and must keep the same with the name defined in k8s service.
But If users Start from scratch, they do not know the port.name.
If user specify containerPort and name, first use containerPort to match, then use name.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the current behavior
When user want to export service node port, It should write following conf:
name is required field, and must keep the same with the name defined in k8s service.
But If users Start from scratch, they do not know the port.name.
Describe the enhancement
If user specify containerPort and name, first use containerPort to match, then use name.
The text was updated successfully, but these errors were encountered: