-
Notifications
You must be signed in to change notification settings - Fork 83
Explaining the need for operator group during install docs #27
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
Explaining the need for operator group during install docs #27
Conversation
251439d
to
a6b03a7
Compare
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.
@shawn-hurley thank you for your PR. I'm left some comments, I'll merge this one as soon you address them. Thanks!
@@ -6,6 +6,21 @@ description: > | |||
[Once you've made your operator available in a catalog](/docs/tasks/make-operator-part-of-catalog/), or you've chosen an operator from the [list of operators available to be installed in the cluster](/docs/tasks/list-operators-available-to-install/), you can install your operator by creating a [`Subscription`](/docs/concepts/customresourcedefinitions/subscription/) to a specific [channel](/docs/concepts/glossary/#channel). | |||
--- | |||
|
|||
Before installing into a namespace, you will need to create an [operator group](/docs/concepts/crds/operatorgroup) in that namespace. The operator group must provide the namespaces that match the operator that you trying to install `installModes`. |
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.
Before installing into a namespace, you will need to create an [operator group](/docs/concepts/crds/operatorgroup) in that namespace. The operator group must provide the namespaces that match the operator that you trying to install `installModes`. | |
Before installing an Operator in a namespace, you will need to create an [OperatorGroup](/docs/concepts/crds/operatorgroup) in that namespace. The operator group must provide the namespaces that match the operator that you trying to install `installModes`. |
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.
The operator group must provide the namespaces that match the operator that you trying to install
installModes.
This sentence is confusing to me. Maybe it'll be clear if you elaborated on the part about "match"-ing the operator?
@@ -6,6 +6,21 @@ description: > | |||
[Once you've made your operator available in a catalog](/docs/tasks/make-operator-part-of-catalog/), or you've chosen an operator from the [list of operators available to be installed in the cluster](/docs/tasks/list-operators-available-to-install/), you can install your operator by creating a [`Subscription`](/docs/concepts/customresourcedefinitions/subscription/) to a specific [channel](/docs/concepts/glossary/#channel). | |||
--- | |||
|
|||
Before installing into a namespace, you will need to create an [operator group](/docs/concepts/crds/operatorgroup) in that namespace. The operator group must provide the namespaces that match the operator that you trying to install `installModes`. | |||
|
|||
For example installing an operator into `foo` namespace that will be cluster scoped you would create a operator group like: |
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.
For example installing an operator into `foo` namespace that will be cluster scoped you would create a operator group like: | |
For example, to install a cluster scoped operator in the namespace `foo`, you would create an OperatorGroup like: |
efe982b
to
9a85162
Compare
9a85162
to
f32871b
Compare
/cherry-pick legacy |
@anik120: #27 failed to apply on top of branch "legacy":
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Adding information on: