디렉토리 구조 및 각 서비스 추가
This commit is contained in:
85
helm/openebs/charts/lvm-localpv/crds/lvmsnapshot.yaml
Normal file
85
helm/openebs/charts/lvm-localpv/crds/lvmsnapshot.yaml
Normal file
@@ -0,0 +1,85 @@
|
||||
|
||||
|
||||
##############################################
|
||||
########### ############
|
||||
########### LVMSnapshot CRD ############
|
||||
########### ############
|
||||
##############################################
|
||||
|
||||
# LVMSnapshot CRD is autogenerated via `make manifests` command.
|
||||
# Do the modification in the code and run the `make manifests` command
|
||||
# to generate the CRD definition
|
||||
|
||||
---
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
annotations:
|
||||
controller-gen.kubebuilder.io/version: v0.4.0
|
||||
creationTimestamp: null
|
||||
name: lvmsnapshots.local.openebs.io
|
||||
spec:
|
||||
group: local.openebs.io
|
||||
names:
|
||||
kind: LVMSnapshot
|
||||
listKind: LVMSnapshotList
|
||||
plural: lvmsnapshots
|
||||
singular: lvmsnapshot
|
||||
scope: Namespaced
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
description: LVMSnapshot represents an LVM Snapshot of the lvm volume
|
||||
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: LVMSnapshotSpec defines LVMSnapshot spec
|
||||
properties:
|
||||
ownerNodeID:
|
||||
description: OwnerNodeID is the Node ID where the volume group is
|
||||
present which is where the snapshot has been provisioned. OwnerNodeID
|
||||
can not be edited after the snapshot has been provisioned.
|
||||
minLength: 1
|
||||
type: string
|
||||
snapSize:
|
||||
description: SnapSize specifies the space reserved for the snapshot
|
||||
type: string
|
||||
volGroup:
|
||||
description: VolGroup specifies the name of the volume group where
|
||||
the snapshot has been created.
|
||||
type: string
|
||||
required:
|
||||
- ownerNodeID
|
||||
- volGroup
|
||||
type: object
|
||||
status:
|
||||
description: SnapStatus string that reflects if the snapshot was created
|
||||
successfully
|
||||
properties:
|
||||
state:
|
||||
type: string
|
||||
type: object
|
||||
required:
|
||||
- spec
|
||||
- status
|
||||
type: object
|
||||
served: true
|
||||
storage: true
|
||||
status:
|
||||
acceptedNames:
|
||||
kind: ""
|
||||
plural: ""
|
||||
conditions: []
|
||||
storedVersions: []
|
||||
Reference in New Issue
Block a user