54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
---
|
|
#############################################
|
|
############ HPE Node Info CRD ############
|
|
#############################################
|
|
apiVersion: apiextensions.k8s.io/v1beta1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
creationTimestamp: null
|
|
name: hpenodeinfos.storage.hpe.com
|
|
spec:
|
|
group: storage.hpe.com
|
|
names:
|
|
kind: HPENodeInfo
|
|
plural: hpenodeinfos
|
|
scope: Cluster
|
|
validation:
|
|
openAPIV3Schema:
|
|
properties:
|
|
hpeNodes:
|
|
description: List of HPE nodes configured for storage access.
|
|
items:
|
|
properties:
|
|
uuid:
|
|
description: The UUID of the node.
|
|
type: string
|
|
iqns:
|
|
description: List of IQNs configured on the node.
|
|
items:
|
|
type: string
|
|
type: array
|
|
chapUser:
|
|
description: The CHAP User Name
|
|
type: string
|
|
chapPassword:
|
|
description: The CHAP Password
|
|
type: string
|
|
networks:
|
|
description: List of networks configured on the node.
|
|
items:
|
|
type: string
|
|
type: array
|
|
wwpns:
|
|
description: List of WWPNs configured on the node.
|
|
items:
|
|
type: string
|
|
type: array
|
|
type: array
|
|
version: v1
|
|
status:
|
|
acceptedNames:
|
|
kind: ""
|
|
plural: ""
|
|
conditions: []
|
|
storedVersions: [] |