Skip to content
New issue

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

DOC: Limit Range manifest example not correct #630

Closed
YvosOnTheHub opened this issue Aug 5, 2022 · 0 comments · Fixed by #676
Closed

DOC: Limit Range manifest example not correct #630

YvosOnTheHub opened this issue Aug 5, 2022 · 0 comments · Fixed by #676
Assignees
Labels
bug Something isn't working documentation Improvements or additions to documentation
Milestone

Comments

@YvosOnTheHub
Copy link

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:

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

@YvosOnTheHub YvosOnTheHub added blocked-needs-validation Issue need triage and validation bug Something isn't working labels Aug 5, 2022
@bsctl bsctl added documentation Improvements or additions to documentation and removed bug Something isn't working blocked-needs-validation Issue need triage and validation labels Aug 15, 2022
@bsctl bsctl self-assigned this Aug 15, 2022
@prometherion prometherion added this to the v0.2.0 milestone Oct 15, 2022
@prometherion prometherion added the bug Something isn't working label Jan 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working documentation Improvements or additions to documentation
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants