|
| 1 | +apiVersion: apiextensions.k8s.io/v1 |
| 2 | +kind: CustomResourceDefinition |
| 3 | +metadata: |
| 4 | + annotations: |
| 5 | + cert-manager.io/inject-ca-from: infinispan-operator-system/infinispan-operator-serving-cert |
| 6 | + controller-gen.kubebuilder.io/version: v0.14.0 |
| 7 | + creationTimestamp: null |
| 8 | + labels: |
| 9 | + app.kubernetes.io/name: infinispan-operator |
| 10 | + name: backups.infinispan.org |
| 11 | +spec: |
| 12 | + group: infinispan.org |
| 13 | + names: |
| 14 | + kind: Backup |
| 15 | + listKind: BackupList |
| 16 | + plural: backups |
| 17 | + singular: backup |
| 18 | + scope: Namespaced |
| 19 | + versions: |
| 20 | + - name: v2alpha1 |
| 21 | + schema: |
| 22 | + openAPIV3Schema: |
| 23 | + description: Backup is the Schema for the backups API |
| 24 | + properties: |
| 25 | + apiVersion: |
| 26 | + description: |- |
| 27 | + APIVersion defines the versioned schema of this representation of an object. |
| 28 | + Servers should convert recognized schemas to the latest internal value, and |
| 29 | + may reject unrecognized values. |
| 30 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
| 31 | + type: string |
| 32 | + kind: |
| 33 | + description: |- |
| 34 | + Kind is a string value representing the REST resource this object represents. |
| 35 | + Servers may infer this from the endpoint the client submits requests to. |
| 36 | + Cannot be updated. |
| 37 | + In CamelCase. |
| 38 | + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| 39 | + type: string |
| 40 | + metadata: |
| 41 | + type: object |
| 42 | + spec: |
| 43 | + description: BackupSpec defines the desired state of Backup |
| 44 | + properties: |
| 45 | + cluster: |
| 46 | + description: Infinispan cluster name |
| 47 | + type: string |
| 48 | + container: |
| 49 | + description: InfinispanContainerSpec specify resource requirements |
| 50 | + per container |
| 51 | + properties: |
| 52 | + cliExtraJvmOpts: |
| 53 | + type: string |
| 54 | + cpu: |
| 55 | + type: string |
| 56 | + extraJvmOpts: |
| 57 | + type: string |
| 58 | + memory: |
| 59 | + type: string |
| 60 | + routerExtraJvmOpts: |
| 61 | + type: string |
| 62 | + type: object |
| 63 | + resources: |
| 64 | + properties: |
| 65 | + cacheConfigs: |
| 66 | + description: Deprecated and to be removed on subsequent release. |
| 67 | + Use .Templates instead. |
| 68 | + items: |
| 69 | + type: string |
| 70 | + type: array |
| 71 | + caches: |
| 72 | + items: |
| 73 | + type: string |
| 74 | + type: array |
| 75 | + counters: |
| 76 | + items: |
| 77 | + type: string |
| 78 | + type: array |
| 79 | + protoSchemas: |
| 80 | + items: |
| 81 | + type: string |
| 82 | + type: array |
| 83 | + scripts: |
| 84 | + description: Deprecated and to be removed on subsequent release. |
| 85 | + Use .Tasks instead. |
| 86 | + items: |
| 87 | + type: string |
| 88 | + type: array |
| 89 | + tasks: |
| 90 | + items: |
| 91 | + type: string |
| 92 | + type: array |
| 93 | + templates: |
| 94 | + items: |
| 95 | + type: string |
| 96 | + type: array |
| 97 | + type: object |
| 98 | + volume: |
| 99 | + properties: |
| 100 | + storage: |
| 101 | + type: string |
| 102 | + storageClassName: |
| 103 | + description: Names the storage class object for persistent volume |
| 104 | + claims. |
| 105 | + type: string |
| 106 | + type: object |
| 107 | + required: |
| 108 | + - cluster |
| 109 | + type: object |
| 110 | + status: |
| 111 | + description: BackupStatus defines the observed state of Backup |
| 112 | + properties: |
| 113 | + phase: |
| 114 | + description: Current phase of the backup operation |
| 115 | + type: string |
| 116 | + pvc: |
| 117 | + description: The name of the created PersistentVolumeClaim used to |
| 118 | + store the backup |
| 119 | + type: string |
| 120 | + reason: |
| 121 | + description: Reason indicates the reason for any backup related failures. |
| 122 | + type: string |
| 123 | + required: |
| 124 | + - phase |
| 125 | + type: object |
| 126 | + type: object |
| 127 | + served: true |
| 128 | + storage: true |
| 129 | + subresources: |
| 130 | + status: {} |
| 131 | +status: |
| 132 | + acceptedNames: |
| 133 | + kind: "" |
| 134 | + plural: "" |
| 135 | + conditions: null |
| 136 | + storedVersions: null |
0 commit comments