You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by mi...@apache.org on 2023/05/06 05:56:38 UTC

[shardingsphere-on-cloud] branch main updated (876deeb -> 4fec4e5)

This is an automated email from the ASF dual-hosted git repository.

miaoliyao pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/shardingsphere-on-cloud.git


    from 876deeb  Merge pull request #339 from mlycore/fix-codecov
     new c8f5ea7  feat(storage-node): add reconcile logic (#293)
     new 6ee75c0  feat(storagenode): support aws rds instance (#314)
     new 4fec4e5  Merge pull request #342 from Xu-Wentao/storage-node-rebase

The 515 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 shardingsphere-operator/Makefile                   |   2 +-
 .../api/v1alpha1/compute_node_types.go             |   2 +-
 .../api/v1alpha1/storage_node_types.go             | 127 ++++++-
 .../api/v1alpha1/zz_generated.deepcopy.go          | 159 ++++++++-
 .../cmd/shardingsphere-operator/manager/option.go  |  46 ++-
 shardingsphere-operator/go.mod                     |  34 +-
 shardingsphere-operator/go.sum                     |  70 +++-
 .../pkg/controllers/compute_node_controller.go     |   2 +-
 .../controllers_suite_test.go}                     |  88 +++--
 .../pkg/controllers/storage_node_controller.go     | 310 +++++++++++++++-
 .../controllers/storage_node_controller_test.go    | 391 +++++++++++++++++++++
 .../storagenode/aws/aurora.go}                     |  36 +-
 .../pkg/reconcile/storagenode/aws/aws.go           |  60 ++++
 .../storagenode/aws/aws_suite_test.go}             |   6 +-
 .../pkg/reconcile/storagenode/aws/mocks/aws.go     | 166 +++++++++
 .../pkg/reconcile/storagenode/aws/rdsinstance.go   | 126 +++++++
 .../reconcile/storagenode/aws/rdsinstance_test.go  |  53 +++
 17 files changed, 1582 insertions(+), 96 deletions(-)
 copy shardingsphere-operator/pkg/{kubernetes/configmap/configmap_suite_test.go => controllers/controllers_suite_test.go} (55%)
 create mode 100644 shardingsphere-operator/pkg/controllers/storage_node_controller_test.go
 copy shardingsphere-operator/pkg/{controllers/storage_node_controller.go => reconcile/storagenode/aws/aurora.go} (51%)
 create mode 100644 shardingsphere-operator/pkg/reconcile/storagenode/aws/aws.go
 copy shardingsphere-operator/pkg/{distsql/visitor/visitor_suite_test.go => reconcile/storagenode/aws/aws_suite_test.go} (92%)
 create mode 100644 shardingsphere-operator/pkg/reconcile/storagenode/aws/mocks/aws.go
 create mode 100644 shardingsphere-operator/pkg/reconcile/storagenode/aws/rdsinstance.go
 create mode 100644 shardingsphere-operator/pkg/reconcile/storagenode/aws/rdsinstance_test.go