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
There is an issue in the documentation on the following link: https://capsule.clastix.io/docs/general/tutorial/#assign-resources-quota
Check the Pods and containers limits paragraph:
apiVersion: capsule.clastix.io/v1beta1 kind: Tenant metadata: name: oil spec: ... limitRanges: items: - type: Pod min: cpu: "50m" memory: "5Mi" ...
I believe the correct writing is ("- limits:" was missing):
spec: ... limitRanges: items: - limits: - type: Pod min: cpu: "50m" memory: "5Mi" ...
thanks in advance for changing that. It will probably save time for some users
The text was updated successfully, but these errors were encountered:
bsctl
Successfully merging a pull request may close this issue.
Bug description
There is an issue in the documentation on the following link: https://capsule.clastix.io/docs/general/tutorial/#assign-resources-quota
Check the Pods and containers limits paragraph:
I believe the correct writing is ("- limits:" was missing):
thanks in advance for changing that. It will probably save time for some users
The text was updated successfully, but these errors were encountered: