From cc0dd758cd203e21b107b5e5788362a9bd57cb7f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BC=A0=E5=90=AF=E8=88=AA?=
<12344192+zhangsetsail@user.noreply.gitee.com>
Date: Fri, 12 Jun 2026 18:55:12 +0800
Subject: [PATCH 1/2] fix: include database pod warning events
---
.../service/cluster/event.go | 63 +++++++++++++++++--
.../service/cluster/event_test.go | 53 ++++++++++++++++
test-manifest.json | 8 +++
3 files changed, 120 insertions(+), 4 deletions(-)
diff --git a/plugins/kb-adapter-rbdplugin/service/cluster/event.go b/plugins/kb-adapter-rbdplugin/service/cluster/event.go
index d14f16728..e90a23cfb 100644
--- a/plugins/kb-adapter-rbdplugin/service/cluster/event.go
+++ b/plugins/kb-adapter-rbdplugin/service/cluster/event.go
@@ -79,19 +79,19 @@ func (s *Service) GetClusterEvents(ctx context.Context, serviceID string, pagina
// getClusterPodEventItems 将数据库实例 Pod 的 Warning 事件纳入组件事件列表
func (s *Service) getClusterPodEventItems(ctx context.Context, cluster *kbappsv1.Cluster) ([]model.EventItem, error) {
- pods, err := s.getClusterPods(ctx, cluster)
+ podNames, err := s.getClusterEventPodNames(ctx, cluster)
if err != nil {
return nil, err
}
eventItems := make([]model.EventItem, 0)
- for _, pod := range pods {
- events, err := getRawPodEventsByIndex(ctx, s.client, pod.Name, cluster.Namespace)
+ for _, podName := range podNames {
+ events, err := getRawPodEventsByIndex(ctx, s.client, podName, cluster.Namespace)
if err != nil {
return nil, err
}
for i := range events {
- eventItem, ok := convertPodEventToEventItem(pod.Name, &events[i])
+ eventItem, ok := convertPodEventToEventItem(podName, &events[i])
if !ok {
continue
}
@@ -102,6 +102,61 @@ func (s *Service) getClusterPodEventItems(ctx context.Context, cluster *kbappsv1
return eventItems, nil
}
+func (s *Service) getClusterEventPodNames(ctx context.Context, cluster *kbappsv1.Cluster) ([]string, error) {
+ pods, err := s.getClusterPods(ctx, cluster)
+ if err != nil {
+ return nil, err
+ }
+
+ podNames := make([]string, 0, len(pods))
+ seen := make(map[string]struct{}, len(pods))
+ for _, pod := range pods {
+ if pod.Name == "" {
+ continue
+ }
+ seen[pod.Name] = struct{}{}
+ podNames = append(podNames, pod.Name)
+ }
+
+ labelPods, err := getClusterPodsByInstanceIndex(ctx, s.client, cluster.Name, cluster.Namespace)
+ if err != nil {
+ return nil, err
+ }
+ for _, pod := range labelPods {
+ if pod.Name == "" {
+ continue
+ }
+ if _, exists := seen[pod.Name]; exists {
+ continue
+ }
+ seen[pod.Name] = struct{}{}
+ podNames = append(podNames, pod.Name)
+ }
+
+ return podNames, nil
+}
+
+func getClusterPodsByInstanceIndex(ctx context.Context, c client.Client, clusterName, namespace string) ([]corev1.Pod, error) {
+ var podList corev1.PodList
+
+ indexKey := fmt.Sprintf("%s/%s", namespace, clusterName)
+ if err := c.List(ctx, &podList, client.MatchingFields{index.NamespaceInstanceField: indexKey}); err == nil {
+ return podList.Items, nil
+ } else {
+ log.Warn("Index query for cluster pods failed",
+ log.String("indexKey", indexKey),
+ log.String("cluster", clusterName),
+ log.String("namespace", namespace),
+ log.Err(err))
+ }
+
+ if err := c.List(ctx, &podList, client.MatchingLabels{index.InstanceLabel: clusterName}, client.InNamespace(namespace)); err != nil {
+ return nil, fmt.Errorf("list pods for cluster %s in namespace %s: %w", clusterName, namespace, err)
+ }
+
+ return podList.Items, nil
+}
+
func getRawPodEventsByIndex(ctx context.Context, c client.Client, podName, namespace string) ([]corev1.Event, error) {
var eventList corev1.EventList
diff --git a/plugins/kb-adapter-rbdplugin/service/cluster/event_test.go b/plugins/kb-adapter-rbdplugin/service/cluster/event_test.go
index fce9d3451..e27e08a8a 100644
--- a/plugins/kb-adapter-rbdplugin/service/cluster/event_test.go
+++ b/plugins/kb-adapter-rbdplugin/service/cluster/event_test.go
@@ -887,6 +887,59 @@ func TestGetClusterEventsIncludesPodWarningEvents(t *testing.T) {
assert.NoError(t, err)
}
+// capability_id: rainbond.kb-adapter.cluster.event-timeline
+func TestGetClusterEventsIncludesPodWarningEventsWhenInstanceStatusIsEmpty(t *testing.T) {
+ ctx := context.Background()
+ baseTime := time.Date(2026, 6, 11, 10, 0, 0, 0, time.UTC)
+ cluster := testutil.NewMySQLCluster("test-cluster", testutil.TestNamespace).
+ WithServiceID(testutil.TestServiceID).
+ Build()
+ instanceSet := testutil.NewInstanceSetBuilder("test-cluster-mysql", testutil.TestNamespace).
+ WithClusterInstance(cluster.Name).
+ WithComponentName("mysql").
+ Build()
+ pod := &corev1.Pod{
+ ObjectMeta: metav1.ObjectMeta{
+ Name: "test-cluster-mysql-0",
+ Namespace: testutil.TestNamespace,
+ Labels: map[string]string{
+ index.InstanceLabel: cluster.Name,
+ "apps.kubeblocks.io/component-name": "mysql",
+ "workloads.kubeblocks.io/instance": instanceSet.Name,
+ },
+ },
+ Status: corev1.PodStatus{Phase: corev1.PodPending},
+ }
+ podEvent := &corev1.Event{
+ ObjectMeta: metav1.ObjectMeta{
+ Name: "test-cluster-mysql-0.17d4",
+ Namespace: testutil.TestNamespace,
+ },
+ InvolvedObject: corev1.ObjectReference{
+ Kind: "Pod",
+ Name: pod.Name,
+ Namespace: pod.Namespace,
+ },
+ Type: corev1.EventTypeWarning,
+ Reason: "FailedScheduling",
+ Message: "0/1 nodes are available: 1 Insufficient memory.",
+ FirstTimestamp: metav1.NewTime(baseTime),
+ LastTimestamp: metav1.NewTime(baseTime.Add(time.Minute)),
+ }
+
+ k8sClient := testutil.NewFakeClientWithIndexes(cluster, instanceSet, pod, podEvent)
+ service := &Service{client: k8sClient}
+ result, err := service.GetClusterEvents(ctx, testutil.TestServiceID, model.Pagination{Page: 1, PageSize: 10})
+
+ require.NoError(t, err)
+ require.NotNil(t, result)
+ require.Len(t, result.Items, 1)
+ assert.Equal(t, 1, result.Total)
+ assert.Equal(t, "FailedScheduling", result.Items[0].OpsType)
+ assert.Equal(t, "failure", result.Items[0].Status)
+ assert.Equal(t, podEvent.Message, result.Items[0].Message)
+}
+
// TestConvertOpsRequestToEventItem 测试 OpsRequest 转换为 EventItem
// capability_id: rainbond.kb-adapter.cluster.event-timeline
func TestConvertOpsRequestToEventItem(t *testing.T) {
diff --git a/test-manifest.json b/test-manifest.json
index 0668b6b72..57ce33a94 100644
--- a/test-manifest.json
+++ b/test-manifest.json
@@ -3061,6 +3061,14 @@
{
"path": "plugins/kb-adapter-rbdplugin/service/cluster/event_test.go",
"selector": "TestGetClusterEvents"
+ },
+ {
+ "path": "plugins/kb-adapter-rbdplugin/service/cluster/event_test.go",
+ "selector": "TestGetClusterEventsIncludesPodWarningEvents"
+ },
+ {
+ "path": "plugins/kb-adapter-rbdplugin/service/cluster/event_test.go",
+ "selector": "TestGetClusterEventsIncludesPodWarningEventsWhenInstanceStatusIsEmpty"
}
],
"test_type": "regression",
From 61c74cf7a1a734bbbe12af33a4aff91aaacb0511 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=BC=A0=E5=90=AF=E8=88=AA?=
<12344192+zhangsetsail@user.noreply.gitee.com>
Date: Fri, 12 Jun 2026 19:17:32 +0800
Subject: [PATCH 2/2] chore: remove embedded kubeblocks adapter plugin
---
plugins/kb-adapter-rbdplugin/.gitignore | 34 -
plugins/kb-adapter-rbdplugin/LICENSE | 201 ---
.../LICENSES/apecloud/kubeblocks/LICENSE | 661 ----------
plugins/kb-adapter-rbdplugin/Makefile | 39 -
plugins/kb-adapter-rbdplugin/README.md | 94 --
.../api/handler/handler.go | 481 -------
plugins/kb-adapter-rbdplugin/api/req/req.go | 65 -
.../kb-adapter-rbdplugin/api/res/errors.go | 59 -
plugins/kb-adapter-rbdplugin/api/res/res.go | 53 -
plugins/kb-adapter-rbdplugin/api/router.go | 60 -
plugins/kb-adapter-rbdplugin/api/server.go | 128 --
.../deploy/docker/Dockerfile | 20 -
.../deploy/docker/build.sh | 27 -
.../deploy/k8s/deploy.yaml | 151 ---
plugins/kb-adapter-rbdplugin/doc/Deploy.md | 169 ---
.../doc/Use_KubeBlocks_in_Rainbond.md | 136 --
.../doc/assets/Block_Mechanica.png | Bin 262973 -> 0 bytes
.../doc/assets/architecture.png | Bin 61647 -> 0 bytes
.../doc/assets/backup.png | Bin 185910 -> 0 bytes
.../doc/assets/connect.png | Bin 206568 -> 0 bytes
.../doc/assets/database-config.png | Bin 133012 -> 0 bytes
.../doc/assets/database-create.png | Bin 140348 -> 0 bytes
.../doc/assets/expansion.png | Bin 148913 -> 0 bytes
.../doc/assets/image-20251016132703363.png | Bin 212157 -> 0 bytes
.../doc/assets/image-20251016144852193.png | Bin 127399 -> 0 bytes
.../doc/assets/image-20251016145103541.png | Bin 145521 -> 0 bytes
.../doc/assets/image-20251016145111505.png | Bin 134767 -> 0 bytes
.../doc/assets/image-20251016151942615.png | Bin 187064 -> 0 bytes
.../doc/assets/image-20251016155052401.png | Bin 193194 -> 0 bytes
.../doc/assets/image-20251016155419021.png | Bin 154495 -> 0 bytes
.../doc/assets/image-20251016155503985.png | Bin 185873 -> 0 bytes
.../doc/assets/image-20251016160722595.png | Bin 231879 -> 0 bytes
.../doc/assets/image-20251016161055609.png | Bin 222645 -> 0 bytes
.../doc/assets/image-20251016161955879.png | Bin 219324 -> 0 bytes
.../doc/assets/image-20251016162928955.png | Bin 51816 -> 0 bytes
.../doc/assets/monitor.png | Bin 313483 -> 0 bytes
.../doc/assets/overview.png | Bin 191675 -> 0 bytes
.../doc/assets/parameter.png | Bin 208295 -> 0 bytes
.../kb-adapter-rbdplugin/doc/assets/port.png | Bin 182547 -> 0 bytes
.../doc/assets/wizard.png | Bin 235960 -> 0 bytes
.../doc/design_document.md | 200 ---
plugins/kb-adapter-rbdplugin/go.mod | 98 --
plugins/kb-adapter-rbdplugin/go.sum | 255 ----
.../internal/config/config.go | 81 --
.../internal/config/config_test.go | 438 -------
.../internal/index/index.go | 133 --
.../internal/k8s/manager.go | 74 --
.../kb-adapter-rbdplugin/internal/log/echo.go | 33 -
.../kb-adapter-rbdplugin/internal/log/log.go | 211 ----
.../internal/model/backup.go | 55 -
.../internal/model/cluster.go | 436 -------
.../internal/model/common.go | 30 -
.../internal/model/doc.go | 2 -
.../internal/model/resource.go | 74 --
.../internal/mono/mono.go | 91 --
.../internal/testutil/builder.go | 682 ----------
.../internal/testutil/doc.go | 5 -
.../internal/testutil/k8s.go | 287 -----
plugins/kb-adapter-rbdplugin/main.go | 50 -
.../service/adapter/adapter.go | 71 --
.../service/backup/backup.go | 550 --------
.../service/backup/backup_test.go | 850 -------------
.../service/builder/builder.go | 103 --
.../service/builder/mysql.go | 34 -
.../service/builder/postgresql.go | 51 -
.../service/builder/rabbitmq.go | 30 -
.../service/builder/redis.go | 74 --
.../service/cluster/cluster.go | 285 -----
.../service/cluster/cluster_test.go | 618 ---------
.../service/cluster/event.go | 321 -----
.../service/cluster/event_test.go | 1110 -----------------
.../service/cluster/info.go | 248 ----
.../service/cluster/info_test.go | 317 -----
.../service/cluster/lifecycle.go | 485 -------
.../service/cluster/lifecycle_test.go | 1105 ----------------
.../service/cluster/parameter.go | 692 ----------
.../service/cluster/parameter_test.go | 229 ----
.../service/cluster/pod.go | 338 -----
.../service/cluster/pod_test.go | 449 -------
.../service/cluster/restore.go | 218 ----
.../service/cluster/restore_test.go | 391 ------
.../service/cluster/scaling.go | 310 -----
.../service/cluster/scaling_test.go | 925 --------------
.../service/coordinator/coordinator.go | 104 --
.../service/coordinator/coordinator_test.go | 205 ---
.../service/coordinator/mysql.go | 80 --
.../service/coordinator/postgresql.go | 112 --
.../service/coordinator/rabbitmq.go | 26 -
.../service/coordinator/redis.go | 120 --
.../kb-adapter-rbdplugin/service/kbkit/doc.go | 2 -
.../service/kbkit/errors.go | 74 --
.../service/kbkit/opsrequest.go | 718 -----------
.../kbkit/opsrequest_preflight_test.go | 832 ------------
.../service/kbkit/opsrequest_test.go | 1081 ----------------
.../service/kbkit/util.go | 104 --
.../service/kbkit/validator.go | 328 -----
.../service/registry/registry.go | 54 -
.../service/resource/resource.go | 118 --
.../service/resource/resource_test.go | 35 -
.../kb-adapter-rbdplugin/service/service.go | 254 ----
test-manifest.json | 485 -------
test-manifest.md | 286 -----
102 files changed, 20435 deletions(-)
delete mode 100644 plugins/kb-adapter-rbdplugin/.gitignore
delete mode 100644 plugins/kb-adapter-rbdplugin/LICENSE
delete mode 100644 plugins/kb-adapter-rbdplugin/LICENSES/apecloud/kubeblocks/LICENSE
delete mode 100644 plugins/kb-adapter-rbdplugin/Makefile
delete mode 100644 plugins/kb-adapter-rbdplugin/README.md
delete mode 100644 plugins/kb-adapter-rbdplugin/api/handler/handler.go
delete mode 100644 plugins/kb-adapter-rbdplugin/api/req/req.go
delete mode 100644 plugins/kb-adapter-rbdplugin/api/res/errors.go
delete mode 100644 plugins/kb-adapter-rbdplugin/api/res/res.go
delete mode 100644 plugins/kb-adapter-rbdplugin/api/router.go
delete mode 100644 plugins/kb-adapter-rbdplugin/api/server.go
delete mode 100644 plugins/kb-adapter-rbdplugin/deploy/docker/Dockerfile
delete mode 100755 plugins/kb-adapter-rbdplugin/deploy/docker/build.sh
delete mode 100644 plugins/kb-adapter-rbdplugin/deploy/k8s/deploy.yaml
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/Deploy.md
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/Use_KubeBlocks_in_Rainbond.md
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/Block_Mechanica.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/architecture.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/backup.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/connect.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/database-config.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/database-create.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/expansion.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016132703363.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016144852193.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016145103541.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016145111505.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016151942615.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016155052401.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016155419021.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016155503985.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016160722595.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016161055609.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016161955879.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/image-20251016162928955.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/monitor.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/overview.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/parameter.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/port.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/assets/wizard.png
delete mode 100644 plugins/kb-adapter-rbdplugin/doc/design_document.md
delete mode 100644 plugins/kb-adapter-rbdplugin/go.mod
delete mode 100644 plugins/kb-adapter-rbdplugin/go.sum
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/config/config.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/config/config_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/index/index.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/k8s/manager.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/log/echo.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/log/log.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/model/backup.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/model/cluster.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/model/common.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/model/doc.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/model/resource.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/mono/mono.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/testutil/builder.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/testutil/doc.go
delete mode 100644 plugins/kb-adapter-rbdplugin/internal/testutil/k8s.go
delete mode 100644 plugins/kb-adapter-rbdplugin/main.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/adapter/adapter.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/backup/backup.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/backup/backup_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/builder/builder.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/builder/mysql.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/builder/postgresql.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/builder/rabbitmq.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/builder/redis.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/cluster.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/cluster_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/event.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/event_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/info.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/info_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/lifecycle.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/lifecycle_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/parameter.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/parameter_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/pod.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/pod_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/restore.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/restore_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/scaling.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/cluster/scaling_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/coordinator/coordinator.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/coordinator/coordinator_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/coordinator/mysql.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/coordinator/postgresql.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/coordinator/rabbitmq.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/coordinator/redis.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/kbkit/doc.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/kbkit/errors.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/kbkit/opsrequest.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/kbkit/opsrequest_preflight_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/kbkit/opsrequest_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/kbkit/util.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/kbkit/validator.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/registry/registry.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/resource/resource.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/resource/resource_test.go
delete mode 100644 plugins/kb-adapter-rbdplugin/service/service.go
diff --git a/plugins/kb-adapter-rbdplugin/.gitignore b/plugins/kb-adapter-rbdplugin/.gitignore
deleted file mode 100644
index 549ea2bd0..000000000
--- a/plugins/kb-adapter-rbdplugin/.gitignore
+++ /dev/null
@@ -1,34 +0,0 @@
-# Allowlisting gitignore template for GO projects prevents us
-# from adding various unwanted local files, such as generated
-# files, developer configurations or IDE-specific files etc.
-#
-# Recommended: Go.AllowList.gitignore
-
-# Ignore everything
-*
-
-# But not these files...
-!/.gitignore
-
-!*.go
-!go.sum
-!go.mod
-
-!README.md
-!LICENSE
-
-# Files
-!*.yaml
-!Dockerfile
-!Makefile
-!*.sh
-
-# Test files
-!*_test.go
-
-# Folders
-scripts/**
-!doc/**
-
-# ...even if they are in subdirectories
-!*/
\ No newline at end of file
diff --git a/plugins/kb-adapter-rbdplugin/LICENSE b/plugins/kb-adapter-rbdplugin/LICENSE
deleted file mode 100644
index f49a4e16e..000000000
--- a/plugins/kb-adapter-rbdplugin/LICENSE
+++ /dev/null
@@ -1,201 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
\ No newline at end of file
diff --git a/plugins/kb-adapter-rbdplugin/LICENSES/apecloud/kubeblocks/LICENSE b/plugins/kb-adapter-rbdplugin/LICENSES/apecloud/kubeblocks/LICENSE
deleted file mode 100644
index be3f7b28e..000000000
--- a/plugins/kb-adapter-rbdplugin/LICENSES/apecloud/kubeblocks/LICENSE
+++ /dev/null
@@ -1,661 +0,0 @@
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
-.
diff --git a/plugins/kb-adapter-rbdplugin/Makefile b/plugins/kb-adapter-rbdplugin/Makefile
deleted file mode 100644
index 2e9b81f25..000000000
--- a/plugins/kb-adapter-rbdplugin/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# 默认目标
-.DEFAULT_GOAL := image
-
-# 测试目录,默认递归所有目录
-TESTDIR ?= ./...
-
-# 镜像标签,默认 latest
-TAG ?= latest
-
-# 构建 Docker 镜像
-.PHONY: image
-image:
- deploy/docker/build.sh $(TAG)
-
-# 构建 Go 可执行文件
-.PHONY: build
-build:
- go mod download
- go build -o bin/kb-adapter main.go
-
-# 运行测试
-.PHONY: test
-test:
- go test $(TESTDIR)
-
-# lint
-.PHONY: lint
-lint:
- golangci-lint run
-
-# fmt
-.PHONY: fmt
-fmt:
- golangci-lint fmt
-
-# delpoy
-.PHONY: deploy
-deploy:
- kubectl apply -f deploy/k8s/deploy.yaml
\ No newline at end of file
diff --git a/plugins/kb-adapter-rbdplugin/README.md b/plugins/kb-adapter-rbdplugin/README.md
deleted file mode 100644
index 053f5618f..000000000
--- a/plugins/kb-adapter-rbdplugin/README.md
+++ /dev/null
@@ -1,94 +0,0 @@
-# [Kubeblock Adapter for Rainbond Plugin](https://github.com/furutachiKurea/kb-adapter-rbdplugin)(原 Block Mechanica)
-
-> 本项目原名为 "Block Mechanica",现已更名为 "Kubeblock Adapter for Rainbond Plugin",
-> 后续项目中两个名称也许会共存,应认为其等价
-
-Kubeblock Adapter for Rainbond Plugin Block Mechanica 是一个轻量化的 Kubernetes 服务,通过使用 Echo 编写的 API 服务实现 KubeBlocks 与 Rainbond 的集成
-
-## How does it work?
-
-[如何实现 Rainbond 与 KubeBlocks 的集成](./doc/design_document.md)
-
-## 如何部署
-
-[在 Rainbond 中部署 KubeBlocks 和 Kubeblock Adapter for Rainbond Plugin ](./doc/Deploy.md)
-
-## 如何在 Rainbond 中使用 KubeBlocks
-
-绝大部分情况下,都能像使用 Rainbond 组件一样使用通过 KubeBlocks 创建的数据库
-
-当然也存在一些不同,详见 [在 Rainbond 中使用 KubeBlocks](./doc/Use_KubeBlocks_in_Rainbond.md)
-
-## 目录结构
-
-```txt
-📁 ./
-├── 📁 api/
-│ ├── 📁 handler/
-│ ├── 📁 req/
-│ └── 📁 res/
-├── 📁 deploy/
-│ ├── 📁 docker/
-│ └── 📁 k8s/
-├── 📁 doc/
-│ └── 📁 assets/
-├── 📁 internal/
-│ ├── 📁 config/
-│ ├── 📁 index/
-│ ├── 📁 k8s/
-│ ├── 📁 log/
-│ ├── 📁 model/
-│ ├── 📁 mono/
-│ └── 📁 testutil/
-└── 📁 service/
- ├── 📁 adapter/
- ├── 📁 backup/
- ├── 📁 builder/
- ├── 📁 cluster/
- ├── 📁 coordinator/
- ├── 📁 kbkit/
- ├── 📁 registry/
- └── 📁 resource/
-```
-
-## Make
-
-- 构建 Docker 镜像(默认标签 latest)
-
- ```sh
- make image
- ```
-
-- 构建 Docker 镜像并指定标签(如 v1.0.0)
-
- ```sh
- make image TAG=v1.0.0
- ```
-
-- 构建可执行文件到 bin/kb-adapter
-
- ```sh
- make build
- ```
-
-- 运行所有测试
-
- ```sh
- make test
- ```
-
-- 运行指定目录下的测试(如 service 目录)
-
- ```sh
- make test TESTDIR=./service/...
- ```
-
-## Contributing
-
-[开发仓库](https://github.com/furutachiKurea/kb-adapter-rbdplugin)
-
-欢迎提交 PR 和 Issue,感谢您的贡献!
-
-## License
-
-[Apache 2.0](./LICENSE)
\ No newline at end of file
diff --git a/plugins/kb-adapter-rbdplugin/api/handler/handler.go b/plugins/kb-adapter-rbdplugin/api/handler/handler.go
deleted file mode 100644
index 51552a051..000000000
--- a/plugins/kb-adapter-rbdplugin/api/handler/handler.go
+++ /dev/null
@@ -1,481 +0,0 @@
-package handler
-
-import (
- "fmt"
-
- "github.com/furutachiKurea/kb-adapter-rbdplugin/api/req"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/api/res"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/internal/log"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/internal/model"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/service"
-
- "github.com/labstack/echo/v4"
-)
-
-// Handler 处理 API 请求,集合了 Block Mechanica 的各个服务
-type Handler struct {
- svc service.Services
-}
-
-// NewHandler -
-func NewHandler(svc service.Services) *Handler {
- return &Handler{svc: svc}
-}
-
-// GetAddons 获取 Block Mechanica 支持的数据库类型
-//
-// GET /v1/addons
-func (h *Handler) GetAddons(c echo.Context) error {
- ctx := c.Request().Context()
-
- addons, err := h.svc.GetAddons(ctx)
- if err != nil {
- return res.InternalError(err)
- }
- return res.ReturnSuccess(c, addons)
-}
-
-// GetStorageClasses 集群中的 StorageClass
-//
-// GET /v1/storageclasses
-func (h *Handler) GetStorageClasses(c echo.Context) error {
- ctx := c.Request().Context()
- storageClasses, err := h.svc.GetStorageClasses(ctx)
- if err != nil {
- return res.InternalError(fmt.Errorf("get storage classes: %w", err))
- }
- return res.ReturnSuccess(c, storageClasses)
-}
-
-// GetBackupRepos 集群中设置的 BackupRepo
-//
-// GET /v1/backuprepos
-func (h *Handler) GetBackupRepos(c echo.Context) error {
- ctx := c.Request().Context()
- repos, err := h.svc.ListAvailableBackupRepos(ctx)
- if err != nil {
- return res.InternalError(fmt.Errorf("list available backup repos: %w", err))
- }
- return res.ReturnSuccess(c, repos)
-}
-
-// CreateBackupRepo 创建 BackupRepo 与其凭据 Secret。
-//
-// POST /v1/backuprepos
-func (h *Handler) CreateBackupRepo(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request model.BackupRepoInput
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- repo, err := h.svc.CreateBackupRepo(ctx, request)
- if err != nil {
- return res.InternalError(fmt.Errorf("create backup repo: %w", err))
- }
- return res.ReturnSuccess(c, repo)
-}
-
-// UpdateBackupRepo 更新 BackupRepo。请求中未传 secrets 时保留现有凭据。
-//
-// PUT /v1/backuprepos/:name
-func (h *Handler) UpdateBackupRepo(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request model.BackupRepoInput
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- repo, err := h.svc.UpdateBackupRepo(ctx, c.Param("name"), request)
- if err != nil {
- return res.InternalError(fmt.Errorf("update backup repo: %w", err))
- }
- return res.ReturnSuccess(c, repo)
-}
-
-// DeleteBackupRepo 删除 BackupRepo 与其凭据 Secret。
-//
-// DELETE /v1/backuprepos/:name
-func (h *Handler) DeleteBackupRepo(c echo.Context) error {
- ctx := c.Request().Context()
-
- if err := h.svc.DeleteBackupRepo(ctx, c.Param("name")); err != nil {
- return res.InternalError(fmt.Errorf("delete backup repo: %w", err))
- }
- return res.ReturnSuccess(c, "Done")
-}
-
-// CreateCluster 创建 KubeBlocks 数据库集群
-//
-// POST /v1/clusters
-//
-// 完成之后不保证 Cluster 与 KubeBlocks Component 就绪
-func (h *Handler) CreateCluster(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.ClusterRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- log.Info("CreateCluster", log.Any("request", request))
-
- modelReq := model.ClusterInput{
- ClusterInfo: model.ClusterInfo{
- Name: request.Name,
- Namespace: request.Namespace,
- Type: request.Type,
- Version: request.Version,
- StorageClass: request.StorageClass,
- TerminationPolicy: request.TerminationPolicy,
- },
- ClusterResource: model.ClusterResource{
- CPU: request.CPU,
- Memory: request.Memory,
- Storage: request.Storage,
- Replicas: request.Replicas,
- },
- ClusterBackup: model.ClusterBackup{
- BackupRepo: request.BackupRepo,
- Schedule: model.BackupSchedule{
- Frequency: request.Schedule.Frequency,
- DayOfWeek: request.Schedule.DayOfWeek,
- Hour: request.Schedule.Hour,
- Minute: request.Schedule.Minute,
- },
- RetentionPeriod: request.RetentionPeriod,
- },
- RBDService: model.RBDService{
- ServiceID: request.RBDService.ServiceID,
- },
- }
-
- cluster, err := h.svc.CreateCluster(ctx, modelReq)
- if err != nil {
- return res.InternalError(fmt.Errorf("create cluster: %w", err))
- }
-
- return res.ReturnSuccess(c, cluster)
-}
-
-// CancelClusterCreate 取消集群创建
-//
-// DELETE /v1/clusters/:service-id
-func (h *Handler) CancelClusterCreate(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.ClusterRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- rbdService := model.RBDService{
- ServiceID: request.RBDService.ServiceID,
- }
-
- if err := h.svc.CancelClusterCreate(ctx, rbdService); err != nil {
- return res.InternalError(fmt.Errorf("cancel cluster create: %w", err))
- }
-
- return res.ReturnSuccess(c, "Cancled")
-}
-
-// DeleteCluster 删除 KubeBlocks 数据库集群
-//
-// DELETE /v1/clusters
-func (h *Handler) DeleteCluster(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.DeleteClustersRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- if err := h.svc.DeleteClusters(ctx, request.ServiceIDs); err != nil {
- return res.InternalError(fmt.Errorf("delete clusters: %w", err))
- }
-
- return res.ReturnSuccess(c, "Deleted")
-}
-
-// GetConnectInfo 获取 KubeBlocks 数据库集群的连接信息
-//
-// GET /v1/clusters/connect-info
-func (h *Handler) GetConnectInfo(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.ClusterRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- connectInfos, err := h.svc.GetConnectInfo(ctx, request.RBDService)
- if err != nil {
- return res.InternalError(fmt.Errorf("get connect info: %w", err))
- }
-
- response := &res.ConnectInfoRes{
- ConnectInfos: connectInfos,
- Port: h.svc.GetClusterPort(ctx, request.RBDService.ServiceID),
- }
-
- return res.ReturnSuccess(c, response)
-}
-
-// GetClusterDetail 获取 KubeBlocks 数据库集群的详细信息
-//
-// GET /v1/clusters/:service-id
-func (h *Handler) GetClusterDetail(c echo.Context) error {
- ctx := c.Request().Context()
-
- var rbdService model.RBDService
- if err := c.Bind(&rbdService); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- detail, err := h.svc.GetClusterDetail(ctx, rbdService)
- if err != nil {
- return res.InternalError(fmt.Errorf("get cluster detail: %w", err))
- }
-
- return res.ReturnSuccess(c, detail)
-}
-
-// ExpansionCluster 对 KubeBlocks 数据库集群进行伸缩操作
-//
-// PUT /v1/clusters/:service-id/expansions
-func (h *Handler) ExpansionCluster(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.ClusterRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- modelReq := model.ExpansionInput{
- RBDService: request.RBDService,
- ClusterResource: model.ClusterResource{
- CPU: request.CPU,
- Memory: request.Memory,
- Storage: request.Storage,
- Replicas: request.Replicas,
- },
- }
-
- if err := h.svc.ExpansionCluster(ctx, modelReq); err != nil {
- return res.InternalError(fmt.Errorf("expansion cluster: %w", err))
- }
-
- return res.ReturnSuccess(c, "Done")
-}
-
-// ReScheduleBackup 重新调度 KubeBlocks 数据库集群的备份配置
-//
-// PUT /v1/clusters/:service-id/backup-schedules
-func (h *Handler) ReScheduleBackup(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.BackupRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- schedule := model.BackupScheduleInput{
- RBDService: request.RBDService,
- ClusterBackup: model.ClusterBackup{
- BackupRepo: request.BackupRepo,
- Schedule: request.Schedule,
- RetentionPeriod: request.RetentionPeriod,
- },
- }
-
- if err := h.svc.ReScheduleBackup(ctx, schedule); err != nil {
- return res.InternalError(fmt.Errorf("reschedule backupe: %w", err))
- }
-
- return res.ReturnSuccess(c, "Done")
-}
-
-// GetBackups 获取 KubeBlocks 数据库集群的备份列表
-//
-// GET /v1/clusters/:service-id/backups
-func (h *Handler) GetBackups(c echo.Context) error {
- ctx := c.Request().Context()
-
- var query model.BackupListQuery
- if err := c.Bind(&query); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- result, err := h.svc.ListBackups(ctx, query)
- if err != nil {
- return res.InternalError(fmt.Errorf("get backup list: %w", err))
- }
-
- return res.ReturnList(c, result.Total, query.Page, result.Items)
-}
-
-// CreateBackup 创建 KubeBlocks 数据库集群的备份
-//
-// POST /v1/clusters/:service-id/backups
-func (h *Handler) CreateBackup(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.BackupRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- backupInput := model.BackupInput{
- RBDService: request.RBDService,
- }
-
- if err := h.svc.BackupCluster(ctx, backupInput); err != nil {
- return res.InternalError(fmt.Errorf("create backup: %w", err))
- }
-
- return res.ReturnSuccess(c, "Done")
-}
-
-// DeleteBackups 批量删除 KubeBlocks 数据库集群的指定备份
-//
-// DELETE /v1/clusters/:service-id/backups
-func (h *Handler) DeleteBackups(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.DeleteBackupsRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- log.Info("Wanted to delete backups", log.Any("backups", request.Backups))
-
- deleted, err := h.svc.DeleteBackups(ctx, request.RBDService, request.Backups)
- if err != nil {
- return res.InternalError(fmt.Errorf("delete backups: %w", err))
- }
-
- log.Info("Deleted backups", log.Any("deleted", deleted))
-
- return res.ReturnSuccess(c, deleted)
-}
-
-func (h *Handler) ManageCluster(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.ManageClusterLifecycleRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- result := h.svc.ManageClustersLifecycle(ctx, request.ManageClusterType(), request.ServiceIDs)
- if len(result.Succeeded) == 0 {
- return res.InternalError(res.NewBatchOperationError("manage clusters", result.Failed))
- }
-
- return res.ReturnSuccess(c, result)
-}
-
-func (h *Handler) GetPodDetail(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.GetPodDetailRequest
- log.Debug("GetPodDetail", log.Any("request", request))
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- podDetail, err := h.svc.GetPodDetail(ctx, request.ServiceID, request.PodName)
- if err != nil {
- return res.InternalError(fmt.Errorf("get pod detail: %w", err))
- }
-
- return res.ReturnSuccess(c, podDetail)
-}
-
-func (h *Handler) GetClusterEvents(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.GetClusterEventsRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- result, err := h.svc.GetClusterEvents(ctx, request.ServiceID, request.Pagination)
- if err != nil {
- return res.InternalError(fmt.Errorf("get cluster events: %w", err))
- }
-
- return res.ReturnList(c, result.Total, request.Page, result.Items)
-}
-
-// GetClusterParameters 返回 service-id 对应的 KubeBlocks Cluster 的参数设置,
-// 返回的数据结构还包括参数的约束。
-// ErrTargetNotFound 错误表示该数据库不支持参数设置,不应作为业务错误处理,只返回空列表。
-//
-// GET /v1/clusters/:service-id/parameters
-func (h *Handler) GetClusterParameters(c echo.Context) error {
- ctx := c.Request().Context()
-
- var query model.ClusterParametersQuery
- if err := c.Bind(&query); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- result, err := h.svc.GetClusterParameter(ctx, query)
- if err != nil {
- return res.InternalError(fmt.Errorf("get cluster parameters: %w", err))
- }
-
- return res.ReturnList(c, result.Total, query.Page, result.Items)
-}
-
-// ChangeClusterParameter 变更 KubeBlocks 数据库集群的参数配置
-// 无论是否有参数变更,都应返回 200
-//
-// POST /v1/clusters/:service-id/parameters
-func (h *Handler) ChangeClusterParameter(c echo.Context) error {
- ctx := c.Request().Context()
-
- var change model.ClusterParametersChange
- if err := c.Bind(&change); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- log.Debug("ChangeClusterParameter", log.Any("change", change))
-
- result, err := h.svc.ChangeClusterParameter(ctx, change)
- if err != nil {
- return res.InternalError(fmt.Errorf("change cluster parameters: %w", err))
- }
-
- log.Debug("parameter change response",
- log.String("serviceID", change.ServiceID),
- log.Any("appliedCount", result.Applied),
- log.Any("invalidCount", result.Invalids),
- )
-
- return res.ReturnSuccess(c, result)
-}
-
-func (h *Handler) RestoreClusterFromBackup(c echo.Context) error {
- ctx := c.Request().Context()
-
- var request req.RestoreFromBackupRequest
- if err := c.Bind(&request); err != nil {
- return res.BadRequest(fmt.Errorf("bind request: %w", err))
- }
-
- restoredCluster, err := h.svc.RestoreFromBackup(ctx, request.ServiceID, request.NewServiceID, request.BackupName)
- if err != nil {
- return res.InternalError(fmt.Errorf("restore cluster from backup: %w", err))
- }
-
- response := &res.RestoreFromBackupRes{
- NewClusterName: restoredCluster,
- }
-
- return res.ReturnSuccess(c, response)
-}
diff --git a/plugins/kb-adapter-rbdplugin/api/req/req.go b/plugins/kb-adapter-rbdplugin/api/req/req.go
deleted file mode 100644
index b747055ce..000000000
--- a/plugins/kb-adapter-rbdplugin/api/req/req.go
+++ /dev/null
@@ -1,65 +0,0 @@
-// Package req 用于处理请求
-package req
-
-import (
- "strings"
-
- opsv1alpha1 "github.com/apecloud/kubeblocks/apis/operations/v1alpha1"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/internal/model"
-)
-
-type ClusterRequest struct {
- model.ClusterInfo
- model.ClusterResource
- model.ClusterBackup
- RBDService model.RBDService `json:"rbdService"`
-}
-
-type BackupRequest struct {
- RBDService model.RBDService `json:"rbdService"`
- model.ClusterBackup
-}
-
-type DeleteClustersRequest struct {
- ServiceIDs []string `json:"serviceIDs"`
-}
-
-type DeleteBackupsRequest struct {
- model.RBDService
- Backups []string `json:"backups"`
-}
-
-type ManageClusterLifecycleRequest struct {
- Operation string `json:"operation"`
- ServiceIDs []string `json:"service_ids"`
-}
-
-type GetClusterEventsRequest struct {
- model.RBDService
- model.Pagination
-}
-
-type RestoreFromBackupRequest struct {
- model.RBDService
- NewServiceID string `json:"new_service_id"`
- BackupName string `json:"backup_name"`
-}
-
-// ManageClusterType 将 ManageClusterLifecycleRequest.Operation 转换为 OpsType
-func (m *ManageClusterLifecycleRequest) ManageClusterType() opsv1alpha1.OpsType {
- switch strings.TrimSpace(strings.ToLower(m.Operation)) {
- case "start":
- return opsv1alpha1.StartType
- case "stop":
- return opsv1alpha1.StopType
- case "restart":
- return opsv1alpha1.RestartType
- default:
- return opsv1alpha1.OpsType(m.Operation)
- }
-}
-
-type GetPodDetailRequest struct {
- ServiceID string `json:"service_id" param:"service-id"`
- PodName string `json:"pod_name" param:"pod-name"`
-}
diff --git a/plugins/kb-adapter-rbdplugin/api/res/errors.go b/plugins/kb-adapter-rbdplugin/api/res/errors.go
deleted file mode 100644
index 0c148201c..000000000
--- a/plugins/kb-adapter-rbdplugin/api/res/errors.go
+++ /dev/null
@@ -1,59 +0,0 @@
-package res
-
-import (
- "fmt"
- "net/http"
- "strings"
-
- "github.com/labstack/echo/v4"
-)
-
-type BatchOperationError struct {
- msg string
- errors map[string]error
-}
-
-func NewBatchOperationError(msg string, errors map[string]error) *BatchOperationError {
- return &BatchOperationError{
- msg: msg,
- errors: errors,
- }
-}
-
-func (e *BatchOperationError) Error() string {
- var errMsgs []string
- for serviceID, err := range e.errors {
- errMsgs = append(errMsgs, fmt.Sprintf("%s: %v", serviceID, err))
- }
- return fmt.Sprintf("%s: %s", e.msg, strings.Join(errMsgs, "; "))
-}
-
-// newError 创建一个 echo.HTTPError
-func newError(code int, message string) error {
- return echo.NewHTTPError(code, message)
-}
-
-func InternalError(err error) error {
- message := err.Error()
- return newError(http.StatusInternalServerError, message)
-}
-
-func BadRequest(err error) error {
- message := err.Error()
- return newError(http.StatusBadRequest, message)
-}
-
-func NotFound(err error) error {
- message := err.Error()
- return newError(http.StatusNotFound, message)
-}
-
-func Unauthorized(err error) error {
- message := err.Error()
- return newError(http.StatusUnauthorized, message)
-}
-
-func Forbidden(err error) error {
- message := err.Error()
- return newError(http.StatusForbidden, message)
-}
diff --git a/plugins/kb-adapter-rbdplugin/api/res/res.go b/plugins/kb-adapter-rbdplugin/api/res/res.go
deleted file mode 100644
index 3b0cab07a..000000000
--- a/plugins/kb-adapter-rbdplugin/api/res/res.go
+++ /dev/null
@@ -1,53 +0,0 @@
-// Package res 用于构建响应和定义响应结构体
-//
-// 在 handler 中应当使用 res 包返回响应或错误
-package res
-
-import (
- "net/http"
- "reflect"
-
- "github.com/furutachiKurea/kb-adapter-rbdplugin/internal/model"
- "github.com/labstack/echo/v4"
-)
-
-type ConnectInfoRes struct {
- ConnectInfos []model.ConnectInfo `json:"connect_infos"`
- Port int `json:"port"`
-}
-
-type RestoreFromBackupRes struct {
- NewClusterName string `json:"new_service"`
-}
-
-// Response 定义用于正确返回的 JSON
-type Response struct {
- Bean any `json:"bean,omitempty"`
- List any `json:"list,omitempty"`
- ListAllNumber int `json:"number,omitempty"`
- Page int `json:"page,omitempty"`
-}
-
-// ReturnSuccess -
-func ReturnSuccess(c echo.Context, data any) error {
- if data == nil {
- return c.JSON(http.StatusOK, Response{Bean: nil})
- }
-
- // TODO 优化反射
- v := reflect.ValueOf(data)
- if v.Kind() == reflect.Slice {
- return c.JSON(http.StatusOK, Response{List: data})
- }
-
- return c.JSON(http.StatusOK, Response{Bean: data})
-}
-
-// ReturnList 返回分页列表
-func ReturnList(c echo.Context, total, page int, list any) error {
- return c.JSON(http.StatusOK, Response{
- List: list,
- ListAllNumber: total,
- Page: page,
- })
-}
diff --git a/plugins/kb-adapter-rbdplugin/api/router.go b/plugins/kb-adapter-rbdplugin/api/router.go
deleted file mode 100644
index 1a377c9ea..000000000
--- a/plugins/kb-adapter-rbdplugin/api/router.go
+++ /dev/null
@@ -1,60 +0,0 @@
-package api
-
-import (
- "net/http"
- "time"
-
- "github.com/furutachiKurea/kb-adapter-rbdplugin/internal/config"
-
- "github.com/furutachiKurea/kb-adapter-rbdplugin/api/handler"
-
- "github.com/labstack/echo/v4"
-)
-
-// setupRouter 设置路由
-func setupRouter(v1 *echo.Group, h *handler.Handler) {
- v1.GET("/addons", h.GetAddons)
- v1.GET("/storageclasses", h.GetStorageClasses)
- v1.GET("/backuprepos", h.GetBackupRepos)
- v1.POST("/backuprepos", h.CreateBackupRepo)
- v1.PUT("/backuprepos/:name", h.UpdateBackupRepo)
- v1.DELETE("/backuprepos/:name", h.DeleteBackupRepo)
-
- cluster := v1.Group("/clusters")
- {
- cluster.POST("", h.CreateCluster)
- cluster.DELETE("", h.DeleteCluster)
- cluster.GET("/connect-infos", h.GetConnectInfo)
- cluster.GET("/:service-id", h.GetClusterDetail)
- cluster.PUT("/:service-id", h.ExpansionCluster)
- cluster.PUT("/:service-id/backup-schedules", h.ReScheduleBackup)
- cluster.GET("/:service-id/backups", h.GetBackups)
- cluster.POST("/:service-id/backups", h.CreateBackup)
- cluster.DELETE("/:service-id/backups", h.DeleteBackups)
- cluster.POST("/actions", h.ManageCluster)
- cluster.GET("/:service-id/pods/:pod-name/details", h.GetPodDetail)
- cluster.GET("/:service-id/events", h.GetClusterEvents)
- cluster.GET("/:service-id/parameters", h.GetClusterParameters)
- cluster.POST("/:service-id/parameters", h.ChangeClusterParameter)
- cluster.POST("/:service-id/restores", h.RestoreClusterFromBackup)
- }
-}
-
-// setupHealthRoutes 健康检查路由
-func setupHealthRoutes(e *echo.Echo, cfg *config.ServerConfig) {
- // ready
- e.GET(cfg.ReadinessPath, func(c echo.Context) error {
- return c.JSON(http.StatusOK, echo.Map{
- "status": "ready",
- "timestamp": time.Now().Unix(),
- })
- })
-
- // live
- e.GET(cfg.LivenessPath, func(c echo.Context) error {
- return c.JSON(http.StatusOK, echo.Map{
- "status": "alive",
- "timestamp": time.Now().Unix(),
- })
- })
-}
diff --git a/plugins/kb-adapter-rbdplugin/api/server.go b/plugins/kb-adapter-rbdplugin/api/server.go
deleted file mode 100644
index ee56bc29a..000000000
--- a/plugins/kb-adapter-rbdplugin/api/server.go
+++ /dev/null
@@ -1,128 +0,0 @@
-// Package api Block Mechanica 提供的 API 服务
-package api
-
-import (
- "context"
- "errors"
- "net/http"
-
- "github.com/creasty/defaults"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/api/handler"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/internal/config"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/internal/log"
- "github.com/furutachiKurea/kb-adapter-rbdplugin/service"
- "github.com/labstack/echo/v4"
- "github.com/labstack/echo/v4/middleware"
- ctrl "sigs.k8s.io/controller-runtime"
-)
-
-// Server 将 API 服务封装为 controller-runtime 的 Runnable
-type Server struct {
- echo *echo.Echo
- handler *handler.Handler
- config *config.ServerConfig
-}
-
-func NewAPIServer(h *handler.Handler) *Server {
- e := echo.New()
- cfg := config.MustLoad()
- return &Server{echo: e, handler: h, config: cfg}
-}
-
-// Start 实现 manager.Runnable
-func (r *Server) Start(ctx context.Context) error {
- if err := StartServerWithConfig(ctx, r.echo, r.handler, r.config); err != nil {
- return err
- }
- return nil
-}
-
-// NeedLeaderElection 实现 manager.LeaderElectionRunnable
-func (r *Server) NeedLeaderElection() bool {
- return false
-}
-
-// RegisterServer 创建 Server 并注册至 manager
-func RegisterServer(ctx context.Context, mgr ctrl.Manager, svcs service.Services) error {
- h := handler.NewHandler(svcs)
- apiServer := NewAPIServer(h)
- return mgr.Add(apiServer)
-}
-
-// StartServerWithConfig 使用配置启动服务器
-func StartServerWithConfig(ctx context.Context, e *echo.Echo, handler *handler.Handler, cfg *config.ServerConfig) error {
- // custom echo
- e.HTTPErrorHandler = customErrorHandler()
- e.Binder = customBinder()
-
- // Middleware
- e.Use(middleware.Recover())
- e.Use(log.EchoZap()) // 使用 zap 日志中间件
-
- // 健康检查路由
- setupHealthRoutes(e, cfg)
-
- // 设置路由
- v1 := e.Group("/v1")
- setupRouter(v1, handler)
-
- // 启动服务器 - 直接启动,让 controller-runtime 管理生命周期
- serverAddr := cfg.Host + ":" + cfg.Port
- return e.Start(serverAddr)
-}
-
-// customErrorHandler 自定义 echo.HTTPErrorHandler
-//
-// 将错误处理返回的 JSON 格式设置为
-//
-// {
-// "code": code,
-// "msg": msg,
-// }
-func customErrorHandler() echo.HTTPErrorHandler {
- return func(err error, c echo.Context) {
- code := http.StatusInternalServerError
- msg := "Internal Server Error"
- var he *echo.HTTPError
- if errors.As(err, &he) {
- code = he.Code
- if m, ok := he.Message.(string); ok {
- msg = m
- } else if m, ok := he.Message.(error); ok {
- msg = m.Error()
- }
- }
- _ = c.JSON(code, echo.Map{
- "code": code,
- "msg": msg,
- })
- }
-}
-
-// customBinder 自定义 echo.Binder
-//
-// 使用 creasty/defaults 设置默认值,在结构体中通过 `default` 标签设置
-func customBinder() echo.Binder {
- return &defaultsBinder{
- binder: &echo.DefaultBinder{},
- }
-}
-
-// defaultsBinder 自定义 echo.Binder, 允许使用 creasty/defaults 设置默认值
-type defaultsBinder struct {
- binder *echo.DefaultBinder
-}
-
-func (b *defaultsBinder) Bind(i any, c echo.Context) error {
- // 标准绑定:处理 JSON、查询参数、路径参数等
- if err := b.binder.Bind(i, c); err != nil {
- return err
- }
-
- // 默认值设置:为未提供的字段设置默认值
- if err := defaults.Set(i); err != nil {
- return echo.NewHTTPError(http.StatusBadRequest, "failed to set defaults: "+err.Error())
- }
-
- return nil
-}
diff --git a/plugins/kb-adapter-rbdplugin/deploy/docker/Dockerfile b/plugins/kb-adapter-rbdplugin/deploy/docker/Dockerfile
deleted file mode 100644
index d406935c2..000000000
--- a/plugins/kb-adapter-rbdplugin/deploy/docker/Dockerfile
+++ /dev/null
@@ -1,20 +0,0 @@
-FROM golang:1.24 AS builder
-
-WORKDIR /app
-
-COPY go.mod go.sum ./
-RUN go mod download
-
-COPY . .
-
-RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o kb-adapter main.go
-
-FROM gcr.io/distroless/static
-
-WORKDIR /
-
-COPY --from=builder /app/kb-adapter /kb-adapter
-
-EXPOSE 8080
-
-ENTRYPOINT ["/kb-adapter"]
diff --git a/plugins/kb-adapter-rbdplugin/deploy/docker/build.sh b/plugins/kb-adapter-rbdplugin/deploy/docker/build.sh
deleted file mode 100755
index bb490c8ae..000000000
--- a/plugins/kb-adapter-rbdplugin/deploy/docker/build.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/bash
-
-# 设置变量
-IMAGE_NAME="kb-adapter"
-TAG=${1:-latest}
-DOCKERFILE_PATH="deploy/docker/Dockerfile"
-
-echo "开始构建 Docker 镜像..."
-echo "镜像名称: ${IMAGE_NAME}"
-echo "标签: ${TAG}"
-echo "Dockerfile 路径: ${DOCKERFILE_PATH}"
-
-# 构建镜像
-docker build -f ${DOCKERFILE_PATH} -t ${IMAGE_NAME}:${TAG} .
-
-if [ $? -eq 0 ]; then
- echo "镜像构建成功!"
- echo "镜像信息:"
- docker images ${IMAGE_NAME}:${TAG}
-
- echo ""
- echo "运行命令示例:"
- echo "docker run -p 8080:8080 ${IMAGE_NAME}:${TAG}"
-else
- echo "镜像构建失败!"
- exit 1
-fi
diff --git a/plugins/kb-adapter-rbdplugin/deploy/k8s/deploy.yaml b/plugins/kb-adapter-rbdplugin/deploy/k8s/deploy.yaml
deleted file mode 100644
index 4e01f0752..000000000
--- a/plugins/kb-adapter-rbdplugin/deploy/k8s/deploy.yaml
+++ /dev/null
@@ -1,151 +0,0 @@
-apiVersion: apps/v1
-kind: Deployment
-metadata:
- name: kb-adapter-rbdplugin
- namespace: rbd-plugins
-spec:
- replicas: 1
- selector:
- matchLabels:
- app: kb-adapter-rbdplugin
- template:
- metadata:
- labels:
- app: kb-adapter-rbdplugin
- spec:
- serviceAccountName: kb-adapter-rbdplugin-sa
- containers:
- - name: kb-adapter-rbdplugin
- image: crpi-aoz6mrz2bbre0gxx.cn-hangzhou.personal.cr.aliyuncs.com/block-mechanica/kb-adapter:v0.1.0
- ports:
- - containerPort: 8080
- envFrom:
- - configMapRef:
- name: kb-adapter-rbdplugin-config
- env:
- - name: POD_NAME
- valueFrom:
- fieldRef:
- fieldPath: metadata.name
- livenessProbe:
- httpGet:
- path: /livez
- port: 8080
- initialDelaySeconds: 30
- periodSeconds: 10
- readinessProbe:
- httpGet:
- path: /readyz
- port: 8080
- initialDelaySeconds: 5
- periodSeconds: 5
- resources:
- requests:
- cpu: "100m"
- memory: "128Mi"
- limits:
- cpu: "500m"
- memory: "512Mi"
-
----
-apiVersion: v1
-kind: ConfigMap
-metadata:
- name: kb-adapter-rbdplugin-config
- namespace: rbd-plugins
-data:
- HOST: "0.0.0.0"
- PORT: "8080"
- SERVICE_NAME: "kb-adapter-rbdplugin"
- READINESS_PATH: "/readyz"
- LIVENESS_PATH: "/livez"
-
----
-apiVersion: v1
-kind: ServiceAccount
-metadata:
- name: kb-adapter-rbdplugin-sa
- namespace: rbd-plugins
----
-apiVersion: rbac.authorization.k8s.io/v1
-kind: ClusterRole
-metadata:
- name: kb-adapter-rbdplugin-role
-rules:
- - apiGroups: [""]
- resources: ["pods"]
- verbs: ["get", "list", "watch"]
- - apiGroups: [""]
- resources: ["configmaps"]
- verbs: ["get", "list", "watch"]
- - apiGroups: [""]
- resources: ["secrets"]
- verbs: ["get", "list", "watch", "create", "update", "delete"]
- - apiGroups: [""]
- resources: ["events"]
- verbs: ["list", "watch", "create"]
- - apiGroups: ["apps"]
- resources: ["deployments"]
- verbs: ["list", "watch"]
- - apiGroups: ["storage.k8s.io"]
- resources: ["storageclasses"]
- verbs: ["get", "list", "watch"]
- - apiGroups: ["apps.kubeblocks.io"]
- resources: ["clusters"]
- verbs: ["get", "list", "create", "delete", "patch", "watch"]
- - apiGroups: ["apps.kubeblocks.io"]
- resources: ["componentdefinitions"]
- verbs: ["get", "list", "watch"]
- - apiGroups: ["apps.kubeblocks.io"]
- resources: ["componentversions"]
- verbs: ["list", "watch"]
- - apiGroups: ["operations.kubeblocks.io"]
- resources: ["opsrequests"]
- verbs: ["get", "list", "create", "delete", "patch", "watch"]
- - apiGroups: ["dataprotection.kubeblocks.io"]
- resources: ["backups"]
- verbs: ["list", "delete", "watch"]
- - apiGroups: ["dataprotection.kubeblocks.io"]
- resources: ["backuprepos"]
- verbs: ["get", "list", "watch", "create", "update", "delete"]
- - apiGroups: ["workloads.kubeblocks.io"]
- resources: ["instancesets"]
- verbs: ["list", "watch"]
- - apiGroups: ["parameters.kubeblocks.io"]
- resources: ["paramconfigrenderers"]
- verbs: ["list", "watch"]
- - apiGroups: ["parameters.kubeblocks.io"]
- resources: ["parametersdefinitions"]
- verbs: ["get", "list", "watch"]
- - apiGroups: ["coordination.k8s.io"]
- resources: ["leases"]
- verbs: ["get", "list", "watch", "create", "update", "patch"]
-
----
-apiVersion: rbac.authorization.k8s.io/v1
-kind: ClusterRoleBinding
-metadata:
- name: kb-adapter-rbdplugin-rolebinding
-roleRef:
- apiGroup: rbac.authorization.k8s.io
- kind: ClusterRole
- name: kb-adapter-rbdplugin-role
-subjects:
- - kind: ServiceAccount
- name: kb-adapter-rbdplugin-sa
- namespace: rbd-plugins
-
----
-apiVersion: v1
-kind: Service
-metadata:
- name: kb-adapter-rbdplugin
- namespace: rbd-plugins
-spec:
- selector:
- app: kb-adapter-rbdplugin
- ports:
- - protocol: TCP
- port: 80
- targetPort: 8080
- type: ClusterIP
diff --git a/plugins/kb-adapter-rbdplugin/doc/Deploy.md b/plugins/kb-adapter-rbdplugin/doc/Deploy.md
deleted file mode 100644
index 19b4cd19d..000000000
--- a/plugins/kb-adapter-rbdplugin/doc/Deploy.md
+++ /dev/null
@@ -1,169 +0,0 @@
-# 在 Rainbond 中部署 KubeBlocks
-
-> [KubeBlocks](https://github.com/apecloud/kubeblocks) is an open-source Kubernetes operator for databases (more specifically, for stateful applications, including databases and middleware like message queues), enabling users to run and manage multiple types of databases on Kubernetes.
-
-你可以通过 [Kubeblock Adapter for Rainbond Plugin](https://github.com/furutachiKurea/kb-adapter-rbdplugin) 实现 KubeBlocks 在 Rainbond 中的集成。在绝大部分情况下,你都能像使用 Rainbond 组件一样管理通过 KubeBlocks 创建的数据库
-
-## 安装 KubeBlocks
-
-安装过程参考 KubeBlocks 的[安装文档](https://kubeblocks.io/docs/release-1_0_1/user_docs/overview/install-kubeblocks),这里我们简要说明通过 Helm 安装 KubeBlocks 的步骤,下面的内容大部分来自 [KubeBlocks 官方文档](https://kubeblocks.io/docs/release-1_0_1/user_docs/overview/introduction)
-
-### [前提条件](https://kubeblocks.io/docs/release-1_0_1/user_docs/overview/install-kubeblocks#prerequisites)
-
-| Component 组件 | Database 数据库 | Recommendation 推荐配置 |
-| :---------------- | :-------------- | :---------------------------------------- |
-| **Control Plane** | - | 1 个节点(4 核,4 GB 内存,50GB 存储) |
-| **Data Plane ** | MySQL | 2 个节点(2 核 CPU,4GB 内存,50GB 存储) |
-| | PostgreSQL | 2 个节点(2 核 CPU,4GB 内存,50GB 存储) |
-| | Redis | 2 个节点(2 核 CPU,4GB 内存,50GB 存储) |
-| | MongoDB | 3 个节点(2 核 CPU,4GB 内存,50GB 存储) |
-
-> - Kubernetes 集群(建议 v1.21+版本)——如需可创建测试集群
-> - `kubectl` 已安装并配置 v1.21+版本,具备集群访问权限
-> - 已安装 Helm([安装指南](https://helm.sh/docs/intro/install/))
-> - 已安装快照控制器 ([安装指南](https://kubeblocks.io/docs/release-1_0_1/user_docs/references/install-snapshot-controller))
-
-### 安装 KubeBlocks
-
-```shell
-# 安装 CRDs
-kubectl create -f https://github.com/apecloud/kubeblocks/releases/download/v1.0.1/kubeblocks_crds.yaml
-
-# 设置 Helm Repository
-helm repo add kubeblocks https://apecloud.github.io/helm-charts
-helm repo update
-
-# 部署 KubeBlocks
-helm install kubeblocks kubeblocks/kubeblocks --namespace kb-system --create-namespace --version=v1.0.1
-
-# 可以设置使用 KubeBlocks 提供的镜像源
-helm install kubeblocks kubeblocks/kubeblocks --namespace kb-system --create-namespace --version=v1.0.1 \
---set image.registry=apecloud-registry.cn-zhangjiakou.cr.aliyuncs.com \
---set dataProtection.image.registry=apecloud-registry.cn-zhangjiakou.cr.aliyuncs.com \
---set addonChartsImage.registry=apecloud-registry.cn-zhangjiakou.cr.aliyuncs.com
-```
-
-**注意,KubeBlocks 的 Addon 需要单独设置镜像源**, 参见:
-
-可以在部署时通过指定配置文件来自动创建 BackupRepo:
-
-在部署时创建 BackupRepo 会[简单](#配置-backuprepo)很多,下面以 Rainbond 自动创建的 minio 为例:
-
-Rainbond 自动创建的 minio 账号密码为: `admin/admin1234`,你需要手动创建 `ACCESS KEY` 和 `SECRET KEY` 并创建一个 Bucket
-
-```yaml
-# backuprepo.yaml
-backupRepo:
- create: true
- storageProvider: minio
- config:
- bucket:
- endpoint: http://minio-service.rbd-system.svc.cluster.local:9000
- secrets:
- accessKeyId:
- secretAccessKey:
-```
-
-部署时使用
-
-```shell
-helm install kubeblocks kubeblocks/kubeblocks --namespace kb-system --create-namespace --version=v1.0.1 \
--f backuprepo.yaml
-```
-
-### 验证安装
-
-执行:
-
-```shell
-kubectl -n kb-system get pods
-```
-
-预期输出:
-
-```shell
-NAME READY STATUS RESTARTS AGE
-kubeblocks-7cf7745685-ddlwk 1/1 Running 0 4m39s
-kubeblocks-dataprotection-95fbc79cc-b544l 1/1 Running 0 4m39s
-```
-
-如果 KubeBlocks 工作负载全部就绪,则表示 KubeBlocks 已成功安装。
-
-如果你没有在安装 KubeBlocks 时跳过 Addon 的自动安装的话,KubeBlocks 会自动安装一部分 Addon
-
-**注意**:在 Rainbond 上能够使用的数据库类型取决于你安装的 KubeBlocks Addon 和 Block Mechanica 的支持,目前支持 MySQL semisync、PostgreSQL、Redis replication、RabbitMQ
-
-### 配置 [BackupRepo](https://kubeblocks.io/docs/release-1_0_1/user_docs/concepts/backup-and-restore/backup/backup-repo)
-
-> backupRepo is the storage repository for backup data. Currently, KubeBlocks supports configuring various object storage services as backup repositories, including OSS (Alibaba Cloud Object Storage Service), S3 (Amazon Simple Storage Service), COS (Tencent Cloud Object Storage), GCS (Google Cloud Storage), OBS (Huawei Cloud Object Storage), Azure Blob Storage, MinIO, and other S3-compatible services.
-
-你至少需要配置好一个 BackupRepo 才能使用 KubeBlocks 的备份功能
-
-你可以参考官方提供的示例创建你的 BackupRepo,注意,如果你将 `accessMethod` 设置为了 `Mount`,你需要在你可能需要用到备份功能的 namespace 中都配置好 access key
-
-下面是一个使用 `accessMethod: Tool` 的 S3 BackupRepo 示例,来自 KubeBlocks 官方文档
-
-```shell
-# Create a secret to save the access key for S3
-kubectl create secret generic s3-credential-for-backuprepo \
- -n kb-system \
- --from-literal=accessKeyId= \
- --from-literal=secretAccessKey=
-
-# Create the BackupRepo resource
-kubectl apply -f - <<-'EOF'
-apiVersion: dataprotection.kubeblocks.io/v1alpha1
-kind: BackupRepo
-metadata:
- name: my-repo
- annotations:
- dataprotection.kubeblocks.io/is-default-repo: "true"
-spec:
- storageProviderRef: s3
- accessMethod: Tool
- pvReclaimPolicy: Retain
- volumeCapacity: 100Gi
- config:
- bucket: test-kb-backup
- endpoint: ""
- mountOptions: --memory-limit 1000 --dir-mode 0777 --file-mode 0666
- region: cn-northwest-1
- credential:
- name: s3-credential-for-backuprepo
- namespace: kb-system
- pathPrefix: ""
-EOF
-```
-
-你可以通过 `kubectl get backuprepo` 获取到你创建的 BackupRepo 的状态,如果遇到问题请查看 KubeBlocks 官方文档:
-
-## 安装 Kubeblock Adapter for Rainbond Plugin (原 Block Mechanica)
-
-- 使用 Kubeblock Adapter for Rainbond Plugin 提供的镜像
-
-```shell
-git clone https://github.com/furutachiKurea/kb-adapter-rbdplugin.git && cd kb-adapter-rbdplugin
-make deploy
-# or
-kubectl apply -f https://raw.githubusercontent.com/furutachiKurea/kb-adapter-rbdplugin/refs/heads/main/deploy/k8s/deploy.yaml
-```
-
-- 或者通过手动构建镜像以使用最新版本:
-
-```shell
-git clone https://github.com/furutachiKurea/kb-adapter-rbdplugin.git && cd kb-adapter-rbdplugin
-make image
-# 然后 push 到你的镜像仓库
-```
-
-更新 `deploy/k8s/deploy.yaml` 中的镜像地址,然后执行
-
-```shell
-make deploy
-```
-
-Block Mechanica 需要部署在 rbd-plugins namespace 中,为了简化安装, rbd-api 中硬编码了 kb-adapter-rbdplugin 使用的 namespace,所以不要修改 `deploy.yaml` 中除镜像地址以外的内容,未来待 Rainbond 的插件体系完善之后将会有所优化
-
-## 在 Rainbond 中使用 KubeBlocks
-
-接下来只需要像使用 Rainbond 一样使用通过 KubeBlocks 创建的数据库即可,具体参见[使用文档](Use_KubeBlocks_in_Rainbond.md)
diff --git a/plugins/kb-adapter-rbdplugin/doc/Use_KubeBlocks_in_Rainbond.md b/plugins/kb-adapter-rbdplugin/doc/Use_KubeBlocks_in_Rainbond.md
deleted file mode 100644
index 901675cb9..000000000
--- a/plugins/kb-adapter-rbdplugin/doc/Use_KubeBlocks_in_Rainbond.md
+++ /dev/null
@@ -1,136 +0,0 @@
-# 如何在 Rainbond 使用 KubeBlocks
-
-## 创建 KubeBlocks 数据库集群
-
-KubeBlocks 数据库集群的创建与常规 Rainbond 组件的创建略有不同,数据库集群并没有常规 Rainbond 组件的构建源检测、端口设置、连接信息设置等操作,而是在完成数据库的相关设置之后直接完成创建,Rainbond 会自动完成端口和连接信息的设置
-
-### 通过创建入口进入数据库集群的创建流程
-
-当你安装了 Block Mechanica 和 KubeBlocks 并且存在至少一个可用的 KubeBlocks Addon(你可以创建的数据库集群的类型)时,就能够在 Rainbond 选择组件创建方式的页面中看到 `创建数据库集群` 的入口
-
-
-
-如果不显示数据库创建的入口:
-检查 Block Mechanica 是否正常运行并且确保至少存在一个 Block Mechanica 支持的 KubeBlocks Addon 为 `Enabled` 状态,Block Mechanica 目前支持:`MySQL`, `PostgreSQL`, `Redis`, `RabbitMQ`
-
-```shell
-# 查找是否存在可用的 Block Mechanica Pod
-kubectl get pod -n rbd-system
-
-# 查找 KubeBlocks Addons
-kubectl get addons.extensions.kubeblocks.io
-```
-
-### 数据库集群创建流程
-
-设置数据库集群名称并选择数据库类型
-
-当前 MySQL 使用的 topology 为 [semisync](https://kubeblocks.io/docs/release-1_0_1/kubeblocks-for-mysql/03-topologies/01-semisync),Redis 使用 [replication](https://kubeblocks.io/docs/release-1_0_1/kubeblocks-for-redis/03-topologies/02-replication)
-
-
-
-用户可以为数据库集群设置资源分配等基础信息,对于支持备份的数据库类型,将会提供备份策略,当用户选定 backuprepo 之后将会启用备份功能并开启周期自动备份
-
-
-
-几点说明:
-
-1. 对于多 component 结构的 Cluster 比如 Redis (sentinel & redis),会使用相同的资源分配设置,当用户对数据库集群进行伸缩时,Block Mechanica 会尽最大努力的保证这一点
-
-2. [StorageClass](https://kubernetes.io/zh-cn/docs/concepts/storage/storage-classes/) 会影响到数据库集群的储存容量扩容功能,只有当 StorageClass 的 `ALLOWVOLUMEEXPANSION` 为 `true` 时,扩容功能才能正常生效。该选项在完成数据库集群创建之后**不可修改**
-
- ```shell
- kubectl get storageclass
- ```
-
-3. 对于备份策略,只有手动为数据库集群选定了使用的 BackupRepo 时才会被启用,对于不支持备份的数据库如 RabbitMQ 则不会显示这一选项卡
-
-4. 如果 BackupRepo 一栏为空,请确保集群中存在至少一个 backuprepo 且 status 为 `Ready`
- ```shell
- kubectl get backuprepo
- NAME STATUS STORAGEPROVIDER ACCESSMETHOD DEFAULT AGE
- kubeblocks-backuprepo Ready minio Tool true 22d
- ```
-
-**在完成上述的一系列设置之后,点击 `创建数据库组件` 之后即可完成组件创建**
-
-## 数据库集群运维
-
-与常规的 Rainbond 组件不同,数据库集群的状态由 KubeBlocks 进行管理,Rainbond 只负责将用户的操作转发给 Block Mechanica 并由 Block Mechanica 通过 k8s API 让 KubeBlocks 完成数据库集群的运维操作。
-
-数据库集群运维的绝大部分内容与常规的 Rainbond 组件一致,但是不支持 `日志`、`环境配置` 选项卡,除此之外不同的部分将在下面一一说明:
-
-### 总览
-
-对于数据库集群的状态,与常规 Rainbond 组件不同的是,**只有**当数据库集群进入 `运行中` 时,才能正常使用,详见 [KubeBlocks 文档](https://kubeblocks.io/docs/release-1_0_1/user_docs/references/api-reference/cluster#apps.kubeblocks.io/v1.ClusterPhase)
-
-对于 KubeBlocks 在 Rainbond 中操作记录功能的实现,受限于 KubeBlocks 与 Rainbond 的集成方式,目前对于数据库集群的部分运维操作基于 KubeBlocks 在对于具体的数据库集群进行运维时使用的 OpsRequest 实现,故对于部分不通过 OpsRequest 进行的运维操作则无法展示,如 `备份` 选项卡中的备份策略的修改、备份的删除操作。
-
-
-
-
-
-### 伸缩
-
-KubeBlocks 在 Rainbond 中不支持 `自动伸缩` 、各个实例资源占用的实时展示和伸缩记录
-
-对于用户进行的伸缩操作,Block Mechanica 会为其创建一个 OpsRequest 用于实现数据库集群的伸缩。储存容量的扩容需要在创建数据库集群时设置的 StorageClass 支持扩容才能生效
-
-
-
-### 备份
-
-只有当用户为数据库集群设置了 BackupRepo 之后才能够正常的进行手动备份,当前暂时无法单独启用手动备份或者自动备份
-
-用户能够通过备份列表中进入 `Completed` 的备份恢复数据库集群,从备份恢复数据库集群将会基于此备份创建一个**新的数据库集群**
-
-对于备份策略的修改和已有备份的删除,**KubeBlocks 不支持通过 OpsRequest 完成**,故不会在 `总览` 的 `操作记录` 中展示
-
-对于不支持备份操作的数据库类型,如 RabbitMQ,将无法在此处进行任何操作
-
-
-
-### 监控
-
-目前 Rainbond 中只支持对于数据库集群的 `资源监控`
-
-
-
-### 依赖
-
-Rainbond 将在完成数据库集群创建之后自动在组件连接信息中添加数据库的默认用户和密码
-
-这部分的组件连接信息的使用与常规 Rainbond 组件的[使用方法](https://www.rainbond.com/docs/how-to-guides/app-ops/dependon)一致
-
-数据库集群在 Rainbond 中不支持将其他 Rainbond 组件添加为依赖的操作,移除了 `依赖外部组件` 选项卡
-
-
-
-### 高级设置
-
-相比于常规的 Rainbond 组件,KubeBlocks 数据库集群不支持高级设置中的 `储存`、`插件`、`构建源`、`其他设置`,但是额外支持了 `参数配置`,对于支持数据库参数配置的类型,可以在此处设置数据库参数,此外并不是所有的数据库类型都支持参数配置,如 RabbitMQ
-
-
-
-#### 端口
-
-对于端口设置,目前 KubeBlocks 数据库集群仅支持 TCP 协议
-
-#### 参数配置
-
-对于数据库参数的修改,Rainbond 和 Block Mechanica 只对用户输入的值做最低限度的校验,具体成功与否取决于 KubeBlocks OpsRequest 的执行结果,请参考各个数据库类型的官方文档进行修改
-
-如果该数据库类型不支持进行参数配置,则该表将显示为空
-
-Block Mechanica 判断可展示的数据库参数和其当前值的逻辑为:
-从对应数据库的 `parametersdefinitions.parameters.kubeblocks.io` 中获取定义,并从数据库集群创建时对应创建的 configmap 中获取配置文件中设置的值(对应 `redis.conf`, `postgresql.conf`, etc.),对二者**取交集**作为在 Rainbond 中展示的数据
-
-
-
-### 其他
-
-与常规 Rainbond 组件不同,数据库集群不支持 `构建`、`更新(滚动)`、`访问`、`Web终端` 按钮,对于手动访问数据库进行设置一类的操作,KubeBlocks 的文档中更加推荐通过 service 进行访问
-
-
-
-**KubeBlocks 数据库集群目展示前支持的功能有限,除去前面明确说明的部分,部分 Rainbond 功能可能因为各种原因不被支持,如由于 Rainbond 与 KubeBlocks 的设计差异,构建、滚动更新操作将不会得到支持;在 Rainbond 的团队空间中的储存分配量并不会计算为 KubeBlocks 数据库集群分配的储存量;以目前 KubeBlocks 在 Rainbond 中的集成度,`应用模板` 及其相关功能暂不被支持**
diff --git a/plugins/kb-adapter-rbdplugin/doc/assets/Block_Mechanica.png b/plugins/kb-adapter-rbdplugin/doc/assets/Block_Mechanica.png
deleted file mode 100644
index 46f789933cd07f03395d6a2c82be04237214ec8a..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 262973
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