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
Mistake in documentation https://cdk8s.io/docs/latest/plus/cdk8s-plus-31/service/#ports
This part:
// make the service bind to port 9000 and redirect to port 80 on the associated containers. frontends.bind({port: 9000, targetPort: 80)
There is a syntaxis error with one of the brackets not closed and also API seems different: public bind(port: number, options?: ServiceBindOptions)
public bind(port: number, options?: ServiceBindOptions)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the bug:
Mistake in documentation https://cdk8s.io/docs/latest/plus/cdk8s-plus-31/service/#ports
This part:
There is a syntaxis error with one of the brackets not closed and also API seems different:
public bind(port: number, options?: ServiceBindOptions)
The text was updated successfully, but these errors were encountered: