This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/skywalking-swck.git.
from 0bd307a Init repo new 8d7d8f7 Add OAP Server CRDs new 5285b18 Add PodTemplate new 06a4299 Merge pull request #1 from hanahmily/oap-crds The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: PROJECT | 4 + .../v1alpha1/groupversion_info.go | 23 +- api/v1alpha1/oapserver_types.go | 86 +++ api/v1alpha1/zz_generated.deepcopy.go | 123 ++++ .../operator.skywalking.apache.org_oapservers.yaml | 721 +++++++++++++++++++++ config/crd/kustomization.yaml | 21 + config/crd/kustomizeconfig.yaml | 17 + config/crd/patches/cainjection_in_oapservers.yaml | 8 + config/crd/patches/webhook_in_oapservers.yaml | 17 + config/rbac/oapserver_editor_role.yaml | 24 + config/rbac/oapserver_viewer_role.yaml | 20 + config/rbac/role.yaml | 28 + config/webhook/manifests.yaml | 0 controllers/oapserver_controller.go | 54 ++ controllers/suite_test.go | 81 +++ go.mod | 4 + main.go | 12 + 17 files changed, 1242 insertions(+), 1 deletion(-) copy hack/boilerplate.go.txt => api/v1alpha1/groupversion_info.go (52%) create mode 100644 api/v1alpha1/oapserver_types.go create mode 100644 api/v1alpha1/zz_generated.deepcopy.go create mode 100644 config/crd/bases/operator.skywalking.apache.org_oapservers.yaml create mode 100644 config/crd/kustomization.yaml create mode 100644 config/crd/kustomizeconfig.yaml create mode 100644 config/crd/patches/cainjection_in_oapservers.yaml create mode 100644 config/crd/patches/webhook_in_oapservers.yaml create mode 100644 config/rbac/oapserver_editor_role.yaml create mode 100644 config/rbac/oapserver_viewer_role.yaml create mode 100644 config/rbac/role.yaml create mode 100644 config/webhook/manifests.yaml create mode 100644 controllers/oapserver_controller.go create mode 100644 controllers/suite_test.go