-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Follow-up edits to PR#2596 #2657
Conversation
==== | ||
---- | ||
$ oc create clusterquota for-user --project-annotation-selector openshift.io/requester=<user-name> --hard pods=10 --hard secrets=20 | ||
---- |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe break this up w/ backslashes? E.g.,
$ oc create clusterquota for-user \
--project-annotation-selector openshift.io/requester=<user-name> \
--hard pods=10 \
--hard secrets=20
@ahardin-rh Comments inline, otherwise 👍 |
will be aggregated and that aggregate will be used to limit resources across | ||
all the selected projects. | ||
A multi-project quota, defined by a `*ClusterResourceQuota*` object, allows | ||
xref:../admin_guide/quota.adoc#admin-guide-quota[quota] to be shared across |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the plural for quota is quotas, so either:
s/quota/a quota or s/quota/quotas
That does depend on if you can share one quota object over multiple projects, I guess...
@ahardin-rh Just one comment from me. ⭐ otherwise! |
d1d77ae
to
e96db8e
Compare
Rev history in original PR |
Follow-up to #2596