-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from manju956/csv_fields
Add additional cluster service version required fields
- Loading branch information
Showing
5 changed files
with
29 additions
and
16 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
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 |
---|---|---|
|
@@ -4,18 +4,23 @@ metadata: | |
annotations: | ||
alm-examples: '[]' | ||
capabilities: Basic Install | ||
support: IBM | ||
categories: "OpenShift Optional" | ||
containerImage: "ghcr.io/ocp-power-automation/rsct-operator:latest" | ||
repository: "https://github.com/ocp-power-automation/rsct-operator" | ||
description: Deploys RSCT daemonset on all nodes of an OpenShift cluster | ||
name: rsct-operator.v0.0.0 | ||
namespace: placeholder | ||
namespace: rsct-operator-system | ||
spec: | ||
apiservicedefinitions: {} | ||
customresourcedefinitions: | ||
owned: | ||
- description: RSCT is the Schema for the rscts API | ||
- description: RSCT custom resource is the schema for the rscts API | ||
displayName: RSCT | ||
kind: RSCT | ||
name: rscts.rsct.ibm.com | ||
version: v1alpha1 | ||
description: Deploys RSCT on all nodes of an OpenShift cluster. | ||
description: Deploys custom resource RSCT on all nodes of an OpenShift cluster. | ||
displayName: RSCT Operator for IBM Power Virtual Server | ||
icon: | ||
- base64data: "" | ||
|
@@ -41,7 +46,7 @@ spec: | |
- power | ||
links: | ||
- name: Rsct Operator | ||
url: https://rsct-operator.domain | ||
url: https://github.com/ocp-power-automation/rsct-operator | ||
maintainers: | ||
- email: [email protected] | ||
name: Michael Turek | ||
|
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,2 @@ | ||
resources: | ||
- ns.yaml |
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,16 @@ | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
labels: | ||
control-plane: controller-manager | ||
app.kubernetes.io/name: namespace | ||
app.kubernetes.io/instance: system | ||
app.kubernetes.io/component: manager | ||
app.kubernetes.io/created-by: rsct-operator | ||
app.kubernetes.io/part-of: rsct-operator | ||
app.kubernetes.io/managed-by: kustomize | ||
openshift.io/cluster-monitoring: "true" | ||
pod-security.kubernetes.io/enforce: privileged | ||
pod-security.kubernetes.io/audit: privileged | ||
pod-security.kubernetes.io/warn: privileged | ||
name: rsct-operator-system |