Skip to content

Commit

Permalink
operator ibm-block-csi-operator-community (1.11.2) (redhat-openshift-…
Browse files Browse the repository at this point in the history
…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
kasserater authored May 23, 2024
1 parent 5c6428c commit c22ca3a
Show file tree
Hide file tree
Showing 7 changed files with 2,474 additions and 3 deletions.
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

Large diffs are not rendered by default.

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: []
Loading

0 comments on commit c22ca3a

Please sign in to comment.