-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add watcher target to deploy operator via olm
Since watcher-operator is going to standalone operator to be released via FR2. In order to install it via olm, This pr adds make target in the watcher-operator repo to achieve the same. Jira: https://issues.redhat.com/browse/OSPRH-11419 Signed-off-by: Chandan Kumar <[email protected]>
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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,34 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: openstack-operators | ||
labels: | ||
pod-security.kubernetes.io/enforce: privileged | ||
security.openshift.io/scc.podSecurityLabelSync: "false" | ||
--- | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: CatalogSource | ||
metadata: | ||
name: watcher-operator-index | ||
namespace: openstack-operators | ||
spec: | ||
image: quay.io/openstack-k8s-operators/watcher-operator-index:latest | ||
sourceType: grpc | ||
--- | ||
apiVersion: operators.coreos.com/v1 | ||
kind: OperatorGroup | ||
metadata: | ||
name: openstack | ||
namespace: openstack-operators | ||
--- | ||
apiVersion: operators.coreos.com/v1alpha1 | ||
kind: Subscription | ||
metadata: | ||
name: watcher-operator | ||
namespace: openstack-operators | ||
spec: | ||
name: watcher-operator | ||
channel: alpha | ||
source: watcher-operator-index | ||
sourceNamespace: openstack-operators |