-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[WFLY-21111][JBEAP-30486] install eap operator only for current namespace in ejb-… #1100
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # OperatorGroup configuration for namespace-scoped EAP Operator installation | ||
| # | ||
| # This file configures the EAP Operator to watch only the current namespace | ||
| # instead of being installed globally across all namespaces. | ||
| # | ||
| # BEFORE APPLYING: Replace '<your-namespace>' with your actual namespace name. | ||
| # You can get your current namespace with: oc project -q | ||
| # | ||
| # Example: | ||
| # If your namespace is 'my-project', change both occurrences of '<your-namespace>' to 'my-project' | ||
|
|
||
| apiVersion: operators.coreos.com/v1 | ||
| kind: OperatorGroup | ||
| metadata: | ||
| name: eap-operator-group | ||
| namespace: <your-namespace> | ||
| spec: | ||
| targetNamespaces: | ||
| - <your-namespace> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Subscription configuration for global EAP Operator installation | ||
| # | ||
| # This file subscribes to the EAP Operator from the Red Hat Operators catalog | ||
| # in the openshift-operators namespace, making it available globally across all namespaces. | ||
| # | ||
| # WARNING: This is for development/testing simplicity. In production environments, | ||
| # consider namespace-scoped installation by installing the Subscription in your | ||
| # specific project namespace along with an appropriate OperatorGroup. | ||
|
|
||
| apiVersion: operators.coreos.com/v1alpha1 | ||
| kind: Subscription | ||
| metadata: | ||
| name: eap | ||
| namespace: openshift-operators | ||
| spec: | ||
| channel: stable | ||
| installPlanApproval: Automatic | ||
| name: eap | ||
| source: redhat-operators | ||
| sourceNamespace: openshift-marketplace |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 think this note should be at line 744 before
To verify the operator is ready to use, you can run the following command. You should see the following output.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.
is it different in eap 8.1 branch?
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.
no, it is the same. let keep it the same.