Skip to content

Commit

Permalink
Rename from Percona to PerconaXtraDB (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
shudipta authored and tamalsaha committed Jul 30, 2019
1 parent 270ef77 commit 51b8c03
Show file tree
Hide file tree
Showing 46 changed files with 7,304 additions and 1,352 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ crds_to_patch := kubedb.com_elasticsearches.yaml \
kubedb.com_memcacheds.yaml \
kubedb.com_mongodbs.yaml \
kubedb.com_mysqls.yaml \
kubedb.com_perconas.yaml \
kubedb.com_perconaxtradbs.yaml \
kubedb.com_postgreses.yaml \
kubedb.com_redises.yaml

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
creationTimestamp: null
labels:
app: kubedb
name: perconaversions.catalog.kubedb.com
name: perconaxtradbversions.catalog.kubedb.com
spec:
additionalPrinterColumns:
- JSONPath: .spec.version
Expand All @@ -25,11 +25,11 @@ spec:
- datastore
- kubedb
- appscode
kind: PerconaVersion
plural: perconaversions
kind: PerconaXtraDBVersion
plural: perconaxtradbversions
shortNames:
- pcversion
singular: perconaversion
- pxversion
singular: perconaxtradbversion
scope: Cluster
subresources: {}
validation:
Expand Down Expand Up @@ -417,7 +417,7 @@ spec:
type: string
type: object
spec:
description: PerconaVersionSpec is the spec for Percona version
description: PerconaXtraDBVersionSpec is the spec for PerconaXtraDB version
properties:
db:
description: Database Image
Expand Down
3,152 changes: 3,148 additions & 4 deletions api/crds/kubedb.com_dormantdatabases.yaml

Large diffs are not rendered by default.

2,581 changes: 2,574 additions & 7 deletions api/crds/kubedb.com_perconas.yaml → api/crds/kubedb.com_perconaxtradbs.yaml

Large diffs are not rendered by default.

43 changes: 37 additions & 6 deletions api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -20719,9 +20719,9 @@
"description": "MySQL Spec",
"$ref": "#/definitions/dev.kubedb.apimachinery.apis.kubedb.v1alpha1.MySQLSpec"
},
"percona": {
"description": "Percona Spec",
"$ref": "#/definitions/dev.kubedb.apimachinery.apis.kubedb.v1alpha1.PerconaSpec"
"perconaxtradb": {
"description": "PerconaXtraDB Spec",
"$ref": "#/definitions/dev.kubedb.apimachinery.apis.kubedb.v1alpha1.PerconaXtraDBSpec"
},
"postgres": {
"description": "Postgres Spec",
Expand All @@ -20733,7 +20733,20 @@
}
}
},
"dev.kubedb.apimachinery.apis.kubedb.v1alpha1.PerconaSpec": {
"dev.kubedb.apimachinery.apis.kubedb.v1alpha1.PXCSpec": {
"type": "object",
"properties": {
"clusterName": {
"description": "Name of the cluster and should be identical on all nodes.",
"type": "string"
},
"proxysql": {
"description": "Proxysql configuration",
"$ref": "#/definitions/dev.kubedb.apimachinery.apis.kubedb.v1alpha1.ProxysqlSpec"
}
}
},
"dev.kubedb.apimachinery.apis.kubedb.v1alpha1.PerconaXtraDBSpec": {
"type": "object",
"required": [
"version"
Expand All @@ -20759,8 +20772,12 @@
"description": "PodTemplate is an optional configuration for pods used to expose database",
"$ref": "#/definitions/xyz.kmodules.offshoot-api.api.v1.PodTemplateSpec"
},
"pxc": {
"description": "PXC is the cluster specification for PerconaXtraDB Cluster",
"$ref": "#/definitions/dev.kubedb.apimachinery.apis.kubedb.v1alpha1.PXCSpec"
},
"replicas": {
"description": "Number of instances to deploy for Percona",
"description": "Number of instances to deploy for PerconaXtraDB",
"type": "integer",
"format": "int32"
},
Expand All @@ -20785,7 +20802,7 @@
"$ref": "#/definitions/io.k8s.api.apps.v1.StatefulSetUpdateStrategy"
},
"version": {
"description": "Version of Percona to be deployed.",
"description": "Version of PerconaXtraDB to be deployed.",
"type": "string"
}
}
Expand Down Expand Up @@ -20989,6 +21006,20 @@
}
}
},
"dev.kubedb.apimachinery.apis.kubedb.v1alpha1.ProxysqlSpec": {
"type": "object",
"properties": {
"podTemplate": {
"description": "PodTemplate is an optional configuration for pods used to expose proxysql",
"$ref": "#/definitions/xyz.kmodules.offshoot-api.api.v1.PodTemplateSpec"
},
"replicas": {
"description": "Number of Proxysql nodes. Currently we support only replicas = 1.",
"type": "integer",
"format": "int32"
}
}
},
"dev.kubedb.apimachinery.apis.kubedb.v1alpha1.RecoveryTarget": {
"type": "object",
"properties": {
Expand Down
68 changes: 34 additions & 34 deletions apis/catalog/v1alpha1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 51b8c03

Please sign in to comment.