diff --git a/deploy/crds/redis.kun_redisclusterbackups_crd_new.yaml b/deploy/crds/redis.kun_redisclusterbackups_crd_new.yaml new file mode 100644 index 000000000..1dd30dbde --- /dev/null +++ b/deploy/crds/redis.kun_redisclusterbackups_crd_new.yaml @@ -0,0 +1,47 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + name: redisclusterbackups.redis.kun +spec: + group: redis.kun + names: + kind: RedisClusterBackup + listKind: RedisClusterBackupList + plural: redisclusterbackups + singular: redisclusterbackup + shortNames: + - drcb + scope: Namespaced + versions: + - name: v1alpha1 + served: true + storage: true + schema: + openAPIV3Schema: + description: RedisClusterBackup is the Schema for the redisclusterbackups 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/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/api-conventions.md#types-kinds' + type: string + metadata: + type: object + spec: + description: RedisClusterBackupSpec defines the desired state of RedisClusterBackup + type: object + status: + description: RedisClusterBackupStatus defines the observed state of RedisClusterBackup + type: object + type: object + additionalPrinterColumns: + - jsonPath: .metadata.creationTimestamp + name: Age + type: date + - jsonPath: .status.phase + description: The phase of redis cluster backup + name: Phase + type: string + subresources: + status: {}