-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
operator percona-server-mongodb-operator (1.15.0)
- Loading branch information
1 parent
60ef282
commit 94b646b
Showing
5 changed files
with
18,068 additions
and
0 deletions.
There are no files selected for viewing
620 changes: 620 additions & 0 deletions
620
...rator/1.15.0/manifests/percona-server-mongodb-operator.v1.15.0.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
155 changes: 155 additions & 0 deletions
155
...-mongodb-operator/1.15.0/manifests/perconaservermongodbbackups.psmdb.percona.com.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: perconaservermongodbbackups.psmdb.percona.com | ||
spec: | ||
group: psmdb.percona.com | ||
names: | ||
kind: PerconaServerMongoDBBackup | ||
listKind: PerconaServerMongoDBBackupList | ||
plural: perconaservermongodbbackups | ||
shortNames: | ||
- psmdb-backup | ||
singular: perconaservermongodbbackup | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: Cluster name | ||
jsonPath: .spec.clusterName | ||
name: Cluster | ||
type: string | ||
- description: Storage name | ||
jsonPath: .spec.storageName | ||
name: Storage | ||
type: string | ||
- description: Backup destination | ||
jsonPath: .status.destination | ||
name: Destination | ||
type: string | ||
- description: Backup type | ||
jsonPath: .status.type | ||
name: Type | ||
type: string | ||
- description: Job status | ||
jsonPath: .status.state | ||
name: Status | ||
type: string | ||
- description: Completed time | ||
jsonPath: .status.completed | ||
name: Completed | ||
type: date | ||
- description: Created time | ||
jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
clusterName: | ||
type: string | ||
compressionLevel: | ||
type: integer | ||
compressionType: | ||
type: string | ||
psmdbCluster: | ||
type: string | ||
storageName: | ||
type: string | ||
type: | ||
enum: | ||
- logical | ||
- physical | ||
type: string | ||
type: object | ||
status: | ||
properties: | ||
azure: | ||
properties: | ||
container: | ||
type: string | ||
credentialsSecret: | ||
type: string | ||
prefix: | ||
type: string | ||
required: | ||
- credentialsSecret | ||
type: object | ||
completed: | ||
format: date-time | ||
type: string | ||
destination: | ||
type: string | ||
error: | ||
type: string | ||
lastTransition: | ||
format: date-time | ||
type: string | ||
pbmName: | ||
type: string | ||
pbmPod: | ||
type: string | ||
replsetNames: | ||
items: | ||
type: string | ||
type: array | ||
s3: | ||
properties: | ||
bucket: | ||
type: string | ||
credentialsSecret: | ||
type: string | ||
endpointUrl: | ||
type: string | ||
insecureSkipTLSVerify: | ||
type: boolean | ||
maxUploadParts: | ||
type: integer | ||
prefix: | ||
type: string | ||
region: | ||
type: string | ||
serverSideEncryption: | ||
properties: | ||
kmsKeyID: | ||
type: string | ||
sseAlgorithm: | ||
type: string | ||
sseCustomerAlgorithm: | ||
type: string | ||
sseCustomerKey: | ||
type: string | ||
type: object | ||
storageClass: | ||
type: string | ||
uploadPartSize: | ||
type: integer | ||
required: | ||
- bucket | ||
type: object | ||
start: | ||
format: date-time | ||
type: string | ||
state: | ||
type: string | ||
storageName: | ||
type: string | ||
type: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
156 changes: 156 additions & 0 deletions
156
...mongodb-operator/1.15.0/manifests/perconaservermongodbrestores.psmdb.percona.com.crd.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: perconaservermongodbrestores.psmdb.percona.com | ||
spec: | ||
group: psmdb.percona.com | ||
names: | ||
kind: PerconaServerMongoDBRestore | ||
listKind: PerconaServerMongoDBRestoreList | ||
plural: perconaservermongodbrestores | ||
shortNames: | ||
- psmdb-restore | ||
singular: perconaservermongodbrestore | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: Cluster name | ||
jsonPath: .spec.clusterName | ||
name: Cluster | ||
type: string | ||
- description: Job status | ||
jsonPath: .status.state | ||
name: Status | ||
type: string | ||
- description: Created time | ||
jsonPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
type: string | ||
kind: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
properties: | ||
backupName: | ||
type: string | ||
backupSource: | ||
properties: | ||
azure: | ||
properties: | ||
container: | ||
type: string | ||
credentialsSecret: | ||
type: string | ||
prefix: | ||
type: string | ||
required: | ||
- credentialsSecret | ||
type: object | ||
completed: | ||
format: date-time | ||
type: string | ||
destination: | ||
type: string | ||
error: | ||
type: string | ||
lastTransition: | ||
format: date-time | ||
type: string | ||
pbmName: | ||
type: string | ||
pbmPod: | ||
type: string | ||
replsetNames: | ||
items: | ||
type: string | ||
type: array | ||
s3: | ||
properties: | ||
bucket: | ||
type: string | ||
credentialsSecret: | ||
type: string | ||
endpointUrl: | ||
type: string | ||
insecureSkipTLSVerify: | ||
type: boolean | ||
maxUploadParts: | ||
type: integer | ||
prefix: | ||
type: string | ||
region: | ||
type: string | ||
serverSideEncryption: | ||
properties: | ||
kmsKeyID: | ||
type: string | ||
sseAlgorithm: | ||
type: string | ||
sseCustomerAlgorithm: | ||
type: string | ||
sseCustomerKey: | ||
type: string | ||
type: object | ||
storageClass: | ||
type: string | ||
uploadPartSize: | ||
type: integer | ||
required: | ||
- bucket | ||
type: object | ||
start: | ||
format: date-time | ||
type: string | ||
state: | ||
type: string | ||
storageName: | ||
type: string | ||
type: | ||
type: string | ||
type: object | ||
clusterName: | ||
type: string | ||
pitr: | ||
properties: | ||
date: | ||
type: string | ||
type: | ||
type: string | ||
type: object | ||
replset: | ||
type: string | ||
storageName: | ||
type: string | ||
type: object | ||
status: | ||
properties: | ||
completed: | ||
format: date-time | ||
type: string | ||
error: | ||
type: string | ||
lastTransition: | ||
format: date-time | ||
type: string | ||
pbmName: | ||
type: string | ||
pitrTarget: | ||
type: string | ||
state: | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} |
Oops, something went wrong.