73 lines
2.1 KiB
Io
73 lines
2.1 KiB
Io
---
|
|
# Source: rook-ceph/charts/rook-ceph/templates/resources.yaml
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: objectbuckets.objectbucket.io
|
|
annotations:
|
|
helm.sh/resource-policy: keep
|
|
spec:
|
|
group: objectbucket.io
|
|
names:
|
|
kind: ObjectBucket
|
|
listKind: ObjectBucketList
|
|
plural: objectbuckets
|
|
singular: objectbucket
|
|
shortNames:
|
|
- ob
|
|
- obs
|
|
scope: Cluster
|
|
versions:
|
|
- name: v1alpha1
|
|
served: true
|
|
storage: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
properties:
|
|
storageClassName:
|
|
type: string
|
|
endpoint:
|
|
type: object
|
|
nullable: true
|
|
properties:
|
|
bucketHost:
|
|
type: string
|
|
bucketPort:
|
|
type: integer
|
|
format: int32
|
|
bucketName:
|
|
type: string
|
|
region:
|
|
type: string
|
|
subRegion:
|
|
type: string
|
|
additionalConfig:
|
|
type: object
|
|
nullable: true
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
authentication:
|
|
type: object
|
|
nullable: true
|
|
items:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
additionalState:
|
|
type: object
|
|
nullable: true
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
reclaimPolicy:
|
|
type: string
|
|
claimRef:
|
|
type: object
|
|
nullable: true
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
status:
|
|
type: object
|
|
x-kubernetes-preserve-unknown-fields: true
|
|
subresources:
|
|
status: {}
|