-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator ibm-block-csi-operator-community (1.11.2) (redhat-openshift-…
…ecosystem#4542) * operator ibm-block-csi-operator-community (1.11.2) Signed-off-by: Ariel Kass <[email protected]> * OCP 4.13 matches k8s 1.26 Signed-off-by: Ariel Kass <[email protected]> --------- Signed-off-by: Ariel Kass <[email protected]>
- Loading branch information
1 parent
5c6428c
commit c22ca3a
Showing
7 changed files
with
2,474 additions
and
3 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
operators/ibm-block-csi-operator-community/1.11.2/bundle-1.11.2.Dockerfile
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,13 @@ | ||
FROM scratch | ||
|
||
LABEL operators.operatorframework.io.bundle.channel.default.v1=stable | ||
LABEL operators.operatorframework.io.bundle.channels.v1=stable | ||
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/ | ||
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1 | ||
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/ | ||
LABEL operators.operatorframework.io.bundle.package.v1=ibm-block-csi-operator-community | ||
|
||
COPY manifests /manifests/ | ||
COPY metadata /metadata/ | ||
LABEL com.redhat.openshift.versions="v4.13-v4.15" | ||
LABEL com.redhat.delivery.operator.bundle=true |
579 changes: 579 additions & 0 deletions
579
operators/ibm-block-csi-operator-community/1.11.2/manifests/csi.ibm.com_hostdefiners.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
103 changes: 103 additions & 0 deletions
103
operators/ibm-block-csi-operator-community/1.11.2/manifests/csi.ibm.com_hostdefinitions.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,103 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.7.0 | ||
creationTimestamp: null | ||
labels: | ||
app.kubernetes.io/instance: ibm-block-csi-operator | ||
app.kubernetes.io/managed-by: ibm-block-csi-operator | ||
app.kubernetes.io/name: ibm-block-csi-operator | ||
csi: ibm | ||
product: ibm-block-csi-driver | ||
release: v1.11.2 | ||
name: hostdefinitions.csi.ibm.com | ||
spec: | ||
group: csi.ibm.com | ||
names: | ||
kind: HostDefinition | ||
listKind: HostDefinitionList | ||
plural: hostdefinitions | ||
singular: hostdefinition | ||
scope: Cluster | ||
versions: | ||
- additionalPrinterColumns: | ||
- jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
- jsonPath: .status.phase | ||
name: Phase | ||
type: string | ||
- jsonPath: .spec.hostDefinition.nodeName | ||
name: Node | ||
type: string | ||
- jsonPath: .spec.hostDefinition.managementAddress | ||
name: Management_Address | ||
type: string | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: HostDefinition is the Schema for the hostdefinitions API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: HostDefinitionSpec defines the desired state of HostDefinition | ||
properties: | ||
hostDefinition: | ||
description: Definition defines the observed state of HostDefinition | ||
properties: | ||
connectivityType: | ||
type: string | ||
ioGroups: | ||
items: | ||
type: integer | ||
type: array | ||
managementAddress: | ||
type: string | ||
nodeId: | ||
type: string | ||
nodeName: | ||
type: string | ||
nodeNameOnStorage: | ||
type: string | ||
ports: | ||
items: | ||
type: string | ||
type: array | ||
secretName: | ||
type: string | ||
secretNamespace: | ||
type: string | ||
required: | ||
- managementAddress | ||
- nodeName | ||
type: object | ||
required: | ||
- hostDefinition | ||
type: object | ||
status: | ||
description: HostDefinitionStatus defines the status of the host definition on the storage | ||
properties: | ||
phase: | ||
type: string | ||
required: | ||
- phase | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
Oops, something went wrong.