You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ha...@apache.org on 2022/11/17 12:50:33 UTC

[skywalking-swck] branch adapter-cve updated (0ce8899 -> 38e7a25)

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

hanahmily pushed a change to branch adapter-cve
in repository https://gitbox.apache.org/repos/asf/skywalking-swck.git


    from 0ce8899  Fix several vulnerabilities
     add bf4d134  Improve the release doc (#74)
     add d125f2e  [Feature] Add BanyanDB CRD & Controllers (#70)
     add a07d01b  * Delete the unused custom metric profile. (#76)
     add 38e7a25  Merge branch 'master' into adapter-cve

No new revisions were added by this update.

Summary of changes:
 .github/workflows/go.yml                           |   15 +
 adapter/config/namespaced/apiservice/custom.yaml   |   43 -
 adapter/config/namespaced/apiservice/external.yaml |    2 +-
 .../namespaced/apiservice/kustomization.yaml       |    1 -
 docs/release.md                                    |   20 +-
 operator/PROJECT                                   |    9 +
 operator/apis/operator/v1alpha1/banyandb_types.go  |  106 ++
 .../apis/operator/v1alpha1/banyandb_webhook.go     |   90 ++
 .../operator/v1alpha1/zz_generated.deepcopy.go     |  141 ++-
 .../operator.skywalking.apache.org_banyandbs.yaml  | 1312 ++++++++++++++++++++
 .../operator.skywalking.apache.org_swagents.yaml   |    2 +-
 operator/config/crd/kustomization.yaml             |    3 +
 operator/config/rbac/role.yaml                     |   40 +
 .../samples/{satellite.yaml => banyandb.yaml}      |   26 +-
 operator/config/webhook/manifests.yaml             |   40 +
 ...ellite_controller.go => banyandb_controller.go} |   80 +-
 .../controllers/operator/oapserver_controller.go   |    1 +
 .../controllers/operator/satellite_controller.go   |    1 +
 .../controllers/operator/storage_controller.go     |    1 +
 operator/controllers/operator/ui_controller.go     |    1 +
 operator/main.go                                   |   13 +
 .../manifests/banyandb/templates/deployment.yaml   |  118 ++
 .../templates/grpc_service.yaml}                   |   29 +-
 .../templates/http_service.yaml}                   |   29 +-
 .../{ui => banyandb}/templates/ingress.yaml        |   28 +-
 .../operator/manifests/banyandb/templates/pvc.yaml |   64 +
 .../templates/service_account.yaml                 |    4 +-
 operator/pkg/operator/manifests/repo.go            |    2 +-
 .../e2e.yaml                                       |   34 +-
 test/e2e/deploy-banyandb.yaml                      |   66 +
 ...ml => skywalking-components-with-banyandb.yaml} |   11 +-
 test/e2e/verify/{replicas.yaml => affinity.yaml}   |    5 +-
 32 files changed, 2158 insertions(+), 179 deletions(-)
 delete mode 100644 adapter/config/namespaced/apiservice/custom.yaml
 create mode 100644 operator/apis/operator/v1alpha1/banyandb_types.go
 create mode 100644 operator/apis/operator/v1alpha1/banyandb_webhook.go
 create mode 100644 operator/config/crd/bases/operator.skywalking.apache.org_banyandbs.yaml
 copy operator/config/samples/{satellite.yaml => banyandb.yaml} (68%)
 copy operator/controllers/operator/{satellite_controller.go => banyandb_controller.go} (51%)
 create mode 100644 operator/pkg/operator/manifests/banyandb/templates/deployment.yaml
 copy operator/pkg/operator/manifests/{satellite/templates/service.yaml => banyandb/templates/grpc_service.yaml} (78%)
 copy operator/pkg/operator/manifests/{satellite/templates/service.yaml => banyandb/templates/http_service.yaml} (78%)
 copy operator/pkg/operator/manifests/{ui => banyandb}/templates/ingress.yaml (78%)
 create mode 100644 operator/pkg/operator/manifests/banyandb/templates/pvc.yaml
 copy operator/pkg/operator/manifests/{oapserver => banyandb}/templates/service_account.yaml (92%)
 copy test/e2e/{oap-ui-agent-internal-storage => banyandb}/e2e.yaml (78%)
 create mode 100644 test/e2e/deploy-banyandb.yaml
 copy test/e2e/{skywalking-components-with-storage.yaml => skywalking-components-with-banyandb.yaml} (85%)
 copy test/e2e/verify/{replicas.yaml => affinity.yaml} (93%)