You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: charts/zookeeper-operator/templates/zookeeper.pravega.io_zookeeperclusters_crd.yaml
+82
Original file line number
Diff line number
Diff line change
@@ -5849,4 +5849,86 @@ spec:
5849
5849
storage: true
5850
5850
subresources:
5851
5851
status: {}
5852
+
---
5853
+
apiVersion: apiextensions.k8s.io/v1
5854
+
kind: CustomResourceDefinition
5855
+
metadata:
5856
+
annotations:
5857
+
controller-gen.kubebuilder.io/version: v0.9.0
5858
+
creationTimestamp: null
5859
+
name: zookeeperbackups.zookeeper.pravega.io
5860
+
spec:
5861
+
group: zookeeper.pravega.io
5862
+
names:
5863
+
kind: ZookeeperBackup
5864
+
listKind: ZookeeperBackupList
5865
+
plural: zookeeperbackups
5866
+
singular: zookeeperbackup
5867
+
scope: Namespaced
5868
+
versions:
5869
+
- name: v1beta1
5870
+
schema:
5871
+
openAPIV3Schema:
5872
+
description: ZookeeperBackup is the Schema for the zookeeperbackups API
5873
+
properties:
5874
+
apiVersion:
5875
+
description: 'APIVersion defines the versioned schema of this representation
5876
+
of an object. Servers should convert recognized schemas to the latest
5877
+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
5878
+
type: string
5879
+
kind:
5880
+
description: 'Kind is a string value representing the REST resource this
5881
+
object represents. Servers may infer this from the endpoint the client
5882
+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
5883
+
type: string
5884
+
metadata:
5885
+
type: object
5886
+
spec:
5887
+
description: ZookeeperBackupSpec defines the desired state of ZookeeperBackup
5888
+
properties:
5889
+
backupsToKeep:
5890
+
default: "7"
5891
+
description: Number of backups to store
5892
+
type: string
5893
+
dataCapacity:
5894
+
default: 1Gi
5895
+
description: Data Storage Capacity
5896
+
type: string
5897
+
dataStorageClass:
5898
+
description: Data Storage Class name
5899
+
type: string
5900
+
image:
5901
+
description: Image for backup procedure
5902
+
properties:
5903
+
pullPolicy:
5904
+
description: PullPolicy describes a policy for if/when to pull
5905
+
a container image
5906
+
enum:
5907
+
- Always
5908
+
- Never
5909
+
- IfNotPresent
5910
+
type: string
5911
+
repository:
5912
+
type: string
5913
+
tag:
5914
+
type: string
5915
+
type: object
5916
+
schedule:
5917
+
default: 0 0 */1 * *
5918
+
description: Schedule in Cron format
5919
+
type: string
5920
+
zookeeperCluster:
5921
+
description: Name of the ZookeeperCluster to backup
5922
+
type: string
5923
+
required:
5924
+
- zookeeperCluster
5925
+
type: object
5926
+
status:
5927
+
description: ZookeeperBackupStatus defines the observed state of ZookeeperBackup
description: ZookeeperBackup is the Schema for the zookeeperbackups API
21
-
type: object
22
-
properties:
23
-
apiVersion:
24
-
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'
25
-
type: string
26
-
kind:
27
-
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'
28
-
type: string
29
-
metadata:
30
-
type: object
31
-
spec:
32
-
description: ZookeeperBackupSpec defines the desired state of ZookeeperBackup
33
-
type: object
34
-
required:
35
-
- zookeeperCluster
36
-
properties:
37
-
backupsToKeep:
38
-
description: Number of backups to store
39
-
type: string
40
-
default: "7"
41
-
dataCapacity:
42
-
description: Data Storage Capacity
43
-
type: string
44
-
default: 1Gi
45
-
dataStorageClass:
46
-
description: Data Storage Class name
47
-
type: string
48
-
image:
49
-
description: Image for backup procedure
50
-
type: object
51
-
properties:
52
-
pullPolicy:
53
-
description: PullPolicy describes a policy for if/when to pull a container image
54
-
type: string
55
-
enum:
56
-
- Always
57
-
- Never
58
-
- IfNotPresent
59
-
repository:
60
-
type: string
61
-
tag:
62
-
type: string
63
-
schedule:
64
-
description: Schedule in Cron format
65
-
type: string
66
-
default: 0 0 */1 * *
67
-
zookeeperCluster:
68
-
description: Name of the ZookeeperCluster to backup
69
-
type: string
70
-
status:
71
-
description: ZookeeperBackupStatus defines the observed state of ZookeeperBackup
72
-
type: object
73
-
served: true
74
-
storage: true
75
-
subresources:
76
-
status: {}
18
+
- name: v1beta1
19
+
schema:
20
+
openAPIV3Schema:
21
+
description: ZookeeperBackup is the Schema for the zookeeperbackups API
22
+
properties:
23
+
apiVersion:
24
+
description: 'APIVersion defines the versioned schema of this representation
25
+
of an object. Servers should convert recognized schemas to the latest
26
+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
27
+
type: string
28
+
kind:
29
+
description: 'Kind is a string value representing the REST resource this
30
+
object represents. Servers may infer this from the endpoint the client
31
+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
32
+
type: string
33
+
metadata:
34
+
type: object
35
+
spec:
36
+
description: ZookeeperBackupSpec defines the desired state of ZookeeperBackup
37
+
properties:
38
+
backupsToKeep:
39
+
default: "7"
40
+
description: Number of backups to store
41
+
type: string
42
+
dataCapacity:
43
+
default: 1Gi
44
+
description: Data Storage Capacity
45
+
type: string
46
+
dataStorageClass:
47
+
description: Data Storage Class name
48
+
type: string
49
+
image:
50
+
description: Image for backup procedure
51
+
properties:
52
+
pullPolicy:
53
+
description: PullPolicy describes a policy for if/when to pull
54
+
a container image
55
+
enum:
56
+
- Always
57
+
- Never
58
+
- IfNotPresent
59
+
type: string
60
+
repository:
61
+
type: string
62
+
tag:
63
+
type: string
64
+
type: object
65
+
schedule:
66
+
default: 0 0 */1 * *
67
+
description: Schedule in Cron format
68
+
type: string
69
+
zookeeperCluster:
70
+
description: Name of the ZookeeperCluster to backup
71
+
type: string
72
+
required:
73
+
- zookeeperCluster
74
+
type: object
75
+
status:
76
+
description: ZookeeperBackupStatus defines the observed state of ZookeeperBackup
0 commit comments