├── .asf.yaml ├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ └── go.yml ├── .gitignore ├── .licenserc.yaml ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── adapter ├── .dep.licenserc.yaml ├── Dockerfile ├── Makefile ├── config │ ├── apiserver_auth_reader_role_binding.yaml │ ├── kustomization.yaml │ └── namespaced │ │ ├── adapter │ │ ├── adapter.yaml │ │ └── kustomization.yaml │ │ ├── apiservice │ │ ├── external.yaml │ │ └── kustomization.yaml │ │ ├── kustomization.yaml │ │ └── rbac │ │ ├── apiserver_auth_delegator_cluster_role_binding.yaml │ │ ├── apiserver_resource_reader_cluster_role_binding.yaml.yaml │ │ ├── custom_metrics_cluster_role.yaml │ │ ├── custom_metrics_resource_reader_cluster_role.yaml │ │ ├── hpa_custom_metrics_cluster_role_binding.yaml │ │ └── kustomization.yaml ├── dist │ └── LICENSE.tpl ├── go.mod ├── go.sum ├── main.go └── pkg │ ├── api │ ├── generated │ │ └── openapi │ │ │ └── zz_generated.openapi.go │ └── openapi-gen.go │ └── provider │ ├── provider.go │ └── registery.go ├── dist └── NOTICE ├── docs ├── README.md ├── binary-readme.md ├── custom-metrics-adapter.md ├── design │ └── proposal.md ├── examples │ ├── default-backend.md │ ├── event-exporter.md │ ├── istio-controlplane.md │ ├── java-agent-injector-usage.md │ ├── satellite.md │ └── storage.md ├── getting-started.md ├── how-to-add-new-crd-and-controller.md ├── java-agent-injector.md ├── javaagent.md ├── menu.yml ├── oapserver-configuration.md ├── operator.md └── release.md ├── golangci.yml ├── hack ├── boilerplate.go.txt ├── build-header.sh ├── build │ ├── base.mk │ └── module.mk ├── deploy.sh ├── install-kubebuilder.sh └── prepare-e2e.sh ├── operator ├── .dep.licenserc.yaml ├── .manifests.licenserc.yaml ├── Dockerfile ├── Makefile ├── PROJECT ├── apis │ └── operator │ │ └── v1alpha1 │ │ ├── banyandb_types.go │ │ ├── banyandb_webhook.go │ │ ├── common.go │ │ ├── eventexporter_types.go │ │ ├── eventexporter_webhook.go │ │ ├── fetcher_types.go │ │ ├── fetcher_webhook.go │ │ ├── groupversion_info.go │ │ ├── javaagent_types.go │ │ ├── javaagent_webhook.go │ │ ├── oapserver_types.go │ │ ├── oapserver_webhook.go │ │ ├── oapserverconfig_types.go │ │ ├── oapserverconfig_webhook.go │ │ ├── oapserverdynamicconfig_types.go │ │ ├── oapserverdynamicconfig_webhook.go │ │ ├── satellite_types.go │ │ ├── satellite_webhook.go │ │ ├── storage_types.go │ │ ├── storage_webhook.go │ │ ├── swagent_types.go │ │ ├── swagent_webhook.go │ │ ├── ui_types.go │ │ ├── ui_webhook.go │ │ └── zz_generated.deepcopy.go ├── config │ ├── certmanager │ │ ├── certificate.yaml │ │ ├── kustomization.yaml │ │ └── kustomizeconfig.yaml │ ├── crd │ │ ├── bases │ │ │ ├── operator.skywalking.apache.org_banyandbs.yaml │ │ │ ├── operator.skywalking.apache.org_eventexporters.yaml │ │ │ ├── operator.skywalking.apache.org_fetchers.yaml │ │ │ ├── operator.skywalking.apache.org_javaagents.yaml │ │ │ ├── operator.skywalking.apache.org_oapserverconfigs.yaml │ │ │ ├── operator.skywalking.apache.org_oapserverdynamicconfigs.yaml │ │ │ ├── operator.skywalking.apache.org_oapservers.yaml │ │ │ ├── operator.skywalking.apache.org_satellites.yaml │ │ │ ├── operator.skywalking.apache.org_storages.yaml │ │ │ ├── operator.skywalking.apache.org_swagents.yaml │ │ │ └── operator.skywalking.apache.org_uis.yaml │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig.yaml │ │ └── patches │ │ │ ├── cainjection_in_fetchers.yaml │ │ │ ├── cainjection_in_javaagents.yaml │ │ │ ├── cainjection_in_oapserverconfigs.yaml │ │ │ ├── cainjection_in_oapserverdynamicconfigs.yaml │ │ │ ├── cainjection_in_oapservers.yaml │ │ │ ├── cainjection_in_operator_eventexporters.yaml │ │ │ ├── cainjection_in_satellites.yaml │ │ │ ├── cainjection_in_storages.yaml │ │ │ ├── cainjection_in_swagents.yaml │ │ │ ├── cainjection_in_uis.yaml │ │ │ ├── webhook_in_fetchers.yaml │ │ │ ├── webhook_in_javaagents.yaml │ │ │ ├── webhook_in_oapserverconfigs.yaml │ │ │ ├── webhook_in_oapserverdynamicconfigs.yaml │ │ │ ├── webhook_in_oapservers.yaml │ │ │ ├── webhook_in_operator_eventexporters.yaml │ │ │ ├── webhook_in_satellites.yaml │ │ │ ├── webhook_in_storages.yaml │ │ │ ├── webhook_in_swagents.yaml │ │ │ └── webhook_in_uis.yaml │ ├── default │ │ ├── kustomization.yaml │ │ ├── manager_auth_proxy_patch.yaml │ │ ├── manager_config_patch.yaml │ │ ├── manager_webhook_patch.yaml │ │ └── webhookcainjection_patch.yaml │ ├── manager │ │ ├── controller_manager_config.yaml │ │ ├── kustomization.yaml │ │ └── manager.yaml │ ├── prometheus │ │ ├── kustomization.yaml │ │ └── monitor.yaml │ ├── rbac │ │ ├── auth_proxy_client_clusterrole.yaml │ │ ├── auth_proxy_role.yaml │ │ ├── auth_proxy_role_binding.yaml │ │ ├── auth_proxy_service.yaml │ │ ├── fetcher_editor_role.yaml │ │ ├── fetcher_viewer_role.yaml │ │ ├── javaagent_editor_role.yaml │ │ ├── javaagent_viewer_role.yaml │ │ ├── kustomization.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── oapserver_editor_role.yaml │ │ ├── oapserver_viewer_role.yaml │ │ ├── oapserverconfig_editor_role.yaml │ │ ├── oapserverconfig_viewer_role.yaml │ │ ├── oapserverdynamicconfig_editor_role.yaml │ │ ├── oapserverdynamicconfig_viewer_role.yaml │ │ ├── operator_eventexporter_editor_role.yaml │ │ ├── operator_eventexporter_viewer_role.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ ├── role_patch.yaml │ │ ├── satellite_editor_role.yaml │ │ ├── satellite_viewer_role.yaml │ │ ├── service_account.yaml │ │ ├── storage_editor_role.yaml │ │ ├── storage_viewer_role.yaml │ │ ├── swagent_editor_role.yaml │ │ ├── swagent_viewer_role.yaml │ │ ├── ui_editor_role.yaml │ │ └── ui_viewer_role.yaml │ ├── samples │ │ ├── banyandb.yaml │ │ ├── default.yaml │ │ ├── eventexporter.yaml │ │ ├── fetcher.yaml │ │ ├── minimal.yaml │ │ ├── oapserverconfig.yaml │ │ ├── oapserverdynamicconfig.yaml │ │ ├── satellite-hpa.yaml │ │ ├── satellite.yaml │ │ └── swagent.yaml │ └── webhook │ │ ├── kustomization.yaml │ │ ├── kustomizeconfig.yaml │ │ ├── manifests.yaml │ │ ├── ns_selector_patch.yaml │ │ └── service.yaml ├── controllers │ └── operator │ │ ├── banyandb_controller.go │ │ ├── eventexporter_controller.go │ │ ├── fetcher_controller.go │ │ ├── javaagent_controller.go │ │ ├── oapserver_controller.go │ │ ├── oapserverconfig_controller.go │ │ ├── oapserverdynamicconfig_controller.go │ │ ├── satellite_controller.go │ │ ├── storage_controller.go │ │ ├── swagent_controller.go │ │ └── ui_controller.go ├── dist │ └── LICENSE.tpl ├── go.mod ├── go.sum ├── hack │ └── boilerplate.go.txt ├── main.go └── pkg │ ├── config │ └── config.go │ ├── kubernetes │ ├── apply.go │ ├── kubernetes.go │ └── object.go │ └── operator │ ├── injector │ ├── annotation.go │ ├── injection.go │ ├── injector.go │ ├── validate.go │ └── webhook.go │ └── manifests │ ├── banyandb │ └── templates │ │ ├── deployment.yaml │ │ ├── grpc_service.yaml │ │ ├── http_service.yaml │ │ ├── ingress.yaml │ │ ├── pvc.yaml │ │ └── service_account.yaml │ ├── eventexporter │ └── templates │ │ ├── cluster_role.yaml │ │ ├── cluster_role_binding.yaml │ │ ├── deployment.yaml │ │ └── service_account.yaml │ ├── fetcher │ └── templates │ │ ├── cluster_role.yaml │ │ ├── cluster_role_binding.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── service_account.yaml │ ├── injector │ └── templates │ │ ├── annotations.yaml │ │ └── javaagent.yaml │ ├── oapserver │ └── templates │ │ ├── cluster_role.yaml │ │ ├── cluster_role_binding.yaml │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── service.yaml │ │ └── service_account.yaml │ ├── repo.go │ ├── repo_test.go │ ├── satellite │ └── templates │ │ ├── cluster_role.yaml │ │ ├── cluster_role_binding.yaml │ │ ├── deployment.yaml │ │ ├── service.yaml │ │ └── service_account.yaml │ ├── storage │ └── elasticsearch │ │ └── templates │ │ ├── configmap.yaml │ │ ├── service.yaml │ │ ├── service_account.yaml │ │ └── statefulset.yaml │ └── ui │ └── templates │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml └── test └── e2e ├── banyandb └── e2e.yaml ├── demo-swagent.yaml ├── demo.yaml ├── deploy-banyandb.yaml ├── deploy-elasticsearch.yaml ├── external-storage.yaml ├── hpa-demo.yaml ├── internal-storage.yaml ├── kind.yaml ├── oap-agent-adapter-hpa └── e2e.yaml ├── oap-eventexporter └── e2e.yaml ├── oap-satellite-adapter-hpa └── e2e.yaml ├── oap-ui-agent-external-storage └── e2e.yaml ├── oap-ui-agent-internal-storage └── e2e.yaml ├── oap-ui-agent-oapserverconfig-oapserverdynamicconfig └── e2e.yaml ├── oap-ui-agent-satellite └── e2e.yaml ├── oap-ui-agent └── e2e.yaml ├── oap-ui-swagent-configmap └── e2e.yaml ├── oap-ui-swagent └── e2e.yaml ├── oapserver-cases.yaml ├── oapserverconfig-demo.yaml ├── oapserverdynamicconfig-demo.yaml ├── resource.yaml ├── satellite-hpa-demo.yaml ├── skywalking-components-with-banyandb.yaml ├── skywalking-components-with-eventexporter.yaml ├── skywalking-components-with-satellite.yaml ├── skywalking-components-with-storage.yaml ├── skywalking-components-with-swagent-configmap.yaml ├── skywalking-components-with-swagent.yaml ├── skywalking-components.yaml ├── ui-cases.yaml └── verify ├── affinity.yaml ├── bootstrap-plugin.yaml ├── endpoint.yaml ├── eventexporter-event.yaml ├── hpa-metrics.yaml ├── indices.yaml ├── metrics.yaml ├── optional-plugin.yaml ├── replicas.yaml ├── satellite-hpa-metrics.yaml ├── satellite-replicas.yaml ├── service-apdex.yaml ├── service.yaml ├── swagent-configmap-initcontainer.yaml ├── swagent-configmap-target-container.yaml ├── swagent-initcontainer.yaml ├── swagent-target-container.yaml └── swagent-volumemount.yaml /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/.gitignore -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/README.md -------------------------------------------------------------------------------- /adapter/.dep.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/.dep.licenserc.yaml -------------------------------------------------------------------------------- /adapter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/Dockerfile -------------------------------------------------------------------------------- /adapter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/Makefile -------------------------------------------------------------------------------- /adapter/config/apiserver_auth_reader_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/apiserver_auth_reader_role_binding.yaml -------------------------------------------------------------------------------- /adapter/config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/kustomization.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/adapter/adapter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/adapter/adapter.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/adapter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/adapter/kustomization.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/apiservice/external.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/apiservice/external.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/apiservice/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/apiservice/kustomization.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/kustomization.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/rbac/apiserver_auth_delegator_cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/rbac/apiserver_auth_delegator_cluster_role_binding.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/rbac/apiserver_resource_reader_cluster_role_binding.yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/rbac/apiserver_resource_reader_cluster_role_binding.yaml.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/rbac/custom_metrics_cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/rbac/custom_metrics_cluster_role.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/rbac/custom_metrics_resource_reader_cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/rbac/custom_metrics_resource_reader_cluster_role.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/rbac/hpa_custom_metrics_cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/rbac/hpa_custom_metrics_cluster_role_binding.yaml -------------------------------------------------------------------------------- /adapter/config/namespaced/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/config/namespaced/rbac/kustomization.yaml -------------------------------------------------------------------------------- /adapter/dist/LICENSE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/dist/LICENSE.tpl -------------------------------------------------------------------------------- /adapter/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/go.mod -------------------------------------------------------------------------------- /adapter/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/go.sum -------------------------------------------------------------------------------- /adapter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/main.go -------------------------------------------------------------------------------- /adapter/pkg/api/generated/openapi/zz_generated.openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/pkg/api/generated/openapi/zz_generated.openapi.go -------------------------------------------------------------------------------- /adapter/pkg/api/openapi-gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/pkg/api/openapi-gen.go -------------------------------------------------------------------------------- /adapter/pkg/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/pkg/provider/provider.go -------------------------------------------------------------------------------- /adapter/pkg/provider/registery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/adapter/pkg/provider/registery.go -------------------------------------------------------------------------------- /dist/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/dist/NOTICE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/binary-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/binary-readme.md -------------------------------------------------------------------------------- /docs/custom-metrics-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/custom-metrics-adapter.md -------------------------------------------------------------------------------- /docs/design/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/design/proposal.md -------------------------------------------------------------------------------- /docs/examples/default-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/examples/default-backend.md -------------------------------------------------------------------------------- /docs/examples/event-exporter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/examples/event-exporter.md -------------------------------------------------------------------------------- /docs/examples/istio-controlplane.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/examples/istio-controlplane.md -------------------------------------------------------------------------------- /docs/examples/java-agent-injector-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/examples/java-agent-injector-usage.md -------------------------------------------------------------------------------- /docs/examples/satellite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/examples/satellite.md -------------------------------------------------------------------------------- /docs/examples/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/examples/storage.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/how-to-add-new-crd-and-controller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/how-to-add-new-crd-and-controller.md -------------------------------------------------------------------------------- /docs/java-agent-injector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/java-agent-injector.md -------------------------------------------------------------------------------- /docs/javaagent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/javaagent.md -------------------------------------------------------------------------------- /docs/menu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/menu.yml -------------------------------------------------------------------------------- /docs/oapserver-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/oapserver-configuration.md -------------------------------------------------------------------------------- /docs/operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/operator.md -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/docs/release.md -------------------------------------------------------------------------------- /golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/golangci.yml -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/build-header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/hack/build-header.sh -------------------------------------------------------------------------------- /hack/build/base.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/hack/build/base.mk -------------------------------------------------------------------------------- /hack/build/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/hack/build/module.mk -------------------------------------------------------------------------------- /hack/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/hack/deploy.sh -------------------------------------------------------------------------------- /hack/install-kubebuilder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/hack/install-kubebuilder.sh -------------------------------------------------------------------------------- /hack/prepare-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/hack/prepare-e2e.sh -------------------------------------------------------------------------------- /operator/.dep.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/.dep.licenserc.yaml -------------------------------------------------------------------------------- /operator/.manifests.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/.manifests.licenserc.yaml -------------------------------------------------------------------------------- /operator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/Dockerfile -------------------------------------------------------------------------------- /operator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/Makefile -------------------------------------------------------------------------------- /operator/PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/PROJECT -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/banyandb_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/banyandb_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/banyandb_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/banyandb_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/common.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/eventexporter_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/eventexporter_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/eventexporter_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/eventexporter_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/fetcher_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/fetcher_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/fetcher_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/fetcher_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/javaagent_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/javaagent_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/javaagent_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/javaagent_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/oapserver_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/oapserver_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/oapserver_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/oapserver_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/oapserverconfig_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/oapserverconfig_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/oapserverconfig_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/oapserverconfig_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/oapserverdynamicconfig_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/oapserverdynamicconfig_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/oapserverdynamicconfig_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/oapserverdynamicconfig_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/satellite_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/satellite_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/satellite_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/satellite_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/storage_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/storage_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/storage_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/storage_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/swagent_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/swagent_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/swagent_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/swagent_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/ui_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/ui_types.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/ui_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/ui_webhook.go -------------------------------------------------------------------------------- /operator/apis/operator/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/apis/operator/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /operator/config/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/certmanager/certificate.yaml -------------------------------------------------------------------------------- /operator/config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_banyandbs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_banyandbs.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_eventexporters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_eventexporters.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_fetchers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_fetchers.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_javaagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_javaagents.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_oapserverconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_oapserverconfigs.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_oapserverdynamicconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_oapserverdynamicconfigs.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_oapservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_oapservers.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_satellites.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_satellites.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_storages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_storages.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_swagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_swagents.yaml -------------------------------------------------------------------------------- /operator/config/crd/bases/operator.skywalking.apache.org_uis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/bases/operator.skywalking.apache.org_uis.yaml -------------------------------------------------------------------------------- /operator/config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_fetchers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_fetchers.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_javaagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_javaagents.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_oapserverconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_oapserverconfigs.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_oapserverdynamicconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_oapserverdynamicconfigs.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_oapservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_oapservers.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_operator_eventexporters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_operator_eventexporters.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_satellites.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_satellites.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_storages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_storages.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_swagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_swagents.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/cainjection_in_uis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/cainjection_in_uis.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_fetchers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_fetchers.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_javaagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_javaagents.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_oapserverconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_oapserverconfigs.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_oapserverdynamicconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_oapserverdynamicconfigs.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_oapservers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_oapservers.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_operator_eventexporters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_operator_eventexporters.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_satellites.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_satellites.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_storages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_storages.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_swagents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_swagents.yaml -------------------------------------------------------------------------------- /operator/config/crd/patches/webhook_in_uis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/crd/patches/webhook_in_uis.yaml -------------------------------------------------------------------------------- /operator/config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/default/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/default/manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/default/manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/manager_config_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/default/manager_config_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /operator/config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /operator/config/manager/controller_manager_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/manager/controller_manager_config.yaml -------------------------------------------------------------------------------- /operator/config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/manager/manager.yaml -------------------------------------------------------------------------------- /operator/config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/prometheus/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_client_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/auth_proxy_client_clusterrole.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/auth_proxy_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/auth_proxy_role_binding.yaml -------------------------------------------------------------------------------- /operator/config/rbac/auth_proxy_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/auth_proxy_service.yaml -------------------------------------------------------------------------------- /operator/config/rbac/fetcher_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/fetcher_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/fetcher_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/fetcher_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/javaagent_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/javaagent_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/javaagent_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/javaagent_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /operator/config/rbac/oapserver_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/oapserver_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/oapserver_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/oapserver_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/oapserverconfig_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/oapserverconfig_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/oapserverconfig_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/oapserverconfig_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/oapserverdynamicconfig_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/oapserverdynamicconfig_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/oapserverdynamicconfig_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/oapserverdynamicconfig_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/operator_eventexporter_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/operator_eventexporter_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/operator_eventexporter_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/operator_eventexporter_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /operator/config/rbac/role_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/role_patch.yaml -------------------------------------------------------------------------------- /operator/config/rbac/satellite_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/satellite_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/satellite_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/satellite_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /operator/config/rbac/storage_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/storage_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/storage_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/storage_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/swagent_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/swagent_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/swagent_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/swagent_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/ui_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/ui_editor_role.yaml -------------------------------------------------------------------------------- /operator/config/rbac/ui_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/rbac/ui_viewer_role.yaml -------------------------------------------------------------------------------- /operator/config/samples/banyandb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/banyandb.yaml -------------------------------------------------------------------------------- /operator/config/samples/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/default.yaml -------------------------------------------------------------------------------- /operator/config/samples/eventexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/eventexporter.yaml -------------------------------------------------------------------------------- /operator/config/samples/fetcher.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/fetcher.yaml -------------------------------------------------------------------------------- /operator/config/samples/minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/minimal.yaml -------------------------------------------------------------------------------- /operator/config/samples/oapserverconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/oapserverconfig.yaml -------------------------------------------------------------------------------- /operator/config/samples/oapserverdynamicconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/oapserverdynamicconfig.yaml -------------------------------------------------------------------------------- /operator/config/samples/satellite-hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/satellite-hpa.yaml -------------------------------------------------------------------------------- /operator/config/samples/satellite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/satellite.yaml -------------------------------------------------------------------------------- /operator/config/samples/swagent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/samples/swagent.yaml -------------------------------------------------------------------------------- /operator/config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /operator/config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /operator/config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /operator/config/webhook/ns_selector_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/webhook/ns_selector_patch.yaml -------------------------------------------------------------------------------- /operator/config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/config/webhook/service.yaml -------------------------------------------------------------------------------- /operator/controllers/operator/banyandb_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/banyandb_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/eventexporter_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/eventexporter_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/fetcher_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/fetcher_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/javaagent_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/javaagent_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/oapserver_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/oapserver_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/oapserverconfig_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/oapserverconfig_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/oapserverdynamicconfig_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/oapserverdynamicconfig_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/satellite_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/satellite_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/storage_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/storage_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/swagent_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/swagent_controller.go -------------------------------------------------------------------------------- /operator/controllers/operator/ui_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/controllers/operator/ui_controller.go -------------------------------------------------------------------------------- /operator/dist/LICENSE.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/dist/LICENSE.tpl -------------------------------------------------------------------------------- /operator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/go.mod -------------------------------------------------------------------------------- /operator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/go.sum -------------------------------------------------------------------------------- /operator/hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/main.go -------------------------------------------------------------------------------- /operator/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/config/config.go -------------------------------------------------------------------------------- /operator/pkg/kubernetes/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/kubernetes/apply.go -------------------------------------------------------------------------------- /operator/pkg/kubernetes/kubernetes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/kubernetes/kubernetes.go -------------------------------------------------------------------------------- /operator/pkg/kubernetes/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/kubernetes/object.go -------------------------------------------------------------------------------- /operator/pkg/operator/injector/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/injector/annotation.go -------------------------------------------------------------------------------- /operator/pkg/operator/injector/injection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/injector/injection.go -------------------------------------------------------------------------------- /operator/pkg/operator/injector/injector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/injector/injector.go -------------------------------------------------------------------------------- /operator/pkg/operator/injector/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/injector/validate.go -------------------------------------------------------------------------------- /operator/pkg/operator/injector/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/injector/webhook.go -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/banyandb/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/banyandb/templates/deployment.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/banyandb/templates/grpc_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/banyandb/templates/grpc_service.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/banyandb/templates/http_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/banyandb/templates/http_service.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/banyandb/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/banyandb/templates/ingress.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/banyandb/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/banyandb/templates/pvc.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/banyandb/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/banyandb/templates/service_account.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/eventexporter/templates/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/eventexporter/templates/cluster_role.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/eventexporter/templates/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/eventexporter/templates/cluster_role_binding.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/eventexporter/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/eventexporter/templates/deployment.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/eventexporter/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/eventexporter/templates/service_account.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/fetcher/templates/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/fetcher/templates/cluster_role.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/fetcher/templates/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/fetcher/templates/cluster_role_binding.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/fetcher/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/fetcher/templates/configmap.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/fetcher/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/fetcher/templates/deployment.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/fetcher/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/fetcher/templates/service_account.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/injector/templates/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/injector/templates/annotations.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/injector/templates/javaagent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/injector/templates/javaagent.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/oapserver/templates/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/oapserver/templates/cluster_role.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/oapserver/templates/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/oapserver/templates/cluster_role_binding.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/oapserver/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/oapserver/templates/deployment.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/oapserver/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/oapserver/templates/ingress.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/oapserver/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/oapserver/templates/service.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/oapserver/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/oapserver/templates/service_account.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/repo.go -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/repo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/repo_test.go -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/satellite/templates/cluster_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/satellite/templates/cluster_role.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/satellite/templates/cluster_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/satellite/templates/cluster_role_binding.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/satellite/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/satellite/templates/deployment.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/satellite/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/satellite/templates/service.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/satellite/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/satellite/templates/service_account.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/storage/elasticsearch/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/storage/elasticsearch/templates/configmap.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/storage/elasticsearch/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/storage/elasticsearch/templates/service.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/storage/elasticsearch/templates/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/storage/elasticsearch/templates/service_account.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/storage/elasticsearch/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/storage/elasticsearch/templates/statefulset.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/ui/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/ui/templates/deployment.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/ui/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/ui/templates/ingress.yaml -------------------------------------------------------------------------------- /operator/pkg/operator/manifests/ui/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/operator/pkg/operator/manifests/ui/templates/service.yaml -------------------------------------------------------------------------------- /test/e2e/banyandb/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/banyandb/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/demo-swagent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/demo-swagent.yaml -------------------------------------------------------------------------------- /test/e2e/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/demo.yaml -------------------------------------------------------------------------------- /test/e2e/deploy-banyandb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/deploy-banyandb.yaml -------------------------------------------------------------------------------- /test/e2e/deploy-elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/deploy-elasticsearch.yaml -------------------------------------------------------------------------------- /test/e2e/external-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/external-storage.yaml -------------------------------------------------------------------------------- /test/e2e/hpa-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/hpa-demo.yaml -------------------------------------------------------------------------------- /test/e2e/internal-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/internal-storage.yaml -------------------------------------------------------------------------------- /test/e2e/kind.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/kind.yaml -------------------------------------------------------------------------------- /test/e2e/oap-agent-adapter-hpa/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-agent-adapter-hpa/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-eventexporter/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-eventexporter/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-satellite-adapter-hpa/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-satellite-adapter-hpa/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-ui-agent-external-storage/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-ui-agent-external-storage/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-ui-agent-internal-storage/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-ui-agent-internal-storage/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-ui-agent-oapserverconfig-oapserverdynamicconfig/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-ui-agent-oapserverconfig-oapserverdynamicconfig/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-ui-agent-satellite/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-ui-agent-satellite/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-ui-agent/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-ui-agent/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-ui-swagent-configmap/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-ui-swagent-configmap/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oap-ui-swagent/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oap-ui-swagent/e2e.yaml -------------------------------------------------------------------------------- /test/e2e/oapserver-cases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oapserver-cases.yaml -------------------------------------------------------------------------------- /test/e2e/oapserverconfig-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oapserverconfig-demo.yaml -------------------------------------------------------------------------------- /test/e2e/oapserverdynamicconfig-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/oapserverdynamicconfig-demo.yaml -------------------------------------------------------------------------------- /test/e2e/resource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/resource.yaml -------------------------------------------------------------------------------- /test/e2e/satellite-hpa-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/satellite-hpa-demo.yaml -------------------------------------------------------------------------------- /test/e2e/skywalking-components-with-banyandb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/skywalking-components-with-banyandb.yaml -------------------------------------------------------------------------------- /test/e2e/skywalking-components-with-eventexporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/skywalking-components-with-eventexporter.yaml -------------------------------------------------------------------------------- /test/e2e/skywalking-components-with-satellite.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/skywalking-components-with-satellite.yaml -------------------------------------------------------------------------------- /test/e2e/skywalking-components-with-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/skywalking-components-with-storage.yaml -------------------------------------------------------------------------------- /test/e2e/skywalking-components-with-swagent-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/skywalking-components-with-swagent-configmap.yaml -------------------------------------------------------------------------------- /test/e2e/skywalking-components-with-swagent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/skywalking-components-with-swagent.yaml -------------------------------------------------------------------------------- /test/e2e/skywalking-components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/skywalking-components.yaml -------------------------------------------------------------------------------- /test/e2e/ui-cases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/ui-cases.yaml -------------------------------------------------------------------------------- /test/e2e/verify/affinity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/affinity.yaml -------------------------------------------------------------------------------- /test/e2e/verify/bootstrap-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/bootstrap-plugin.yaml -------------------------------------------------------------------------------- /test/e2e/verify/endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/endpoint.yaml -------------------------------------------------------------------------------- /test/e2e/verify/eventexporter-event.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/eventexporter-event.yaml -------------------------------------------------------------------------------- /test/e2e/verify/hpa-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/hpa-metrics.yaml -------------------------------------------------------------------------------- /test/e2e/verify/indices.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/indices.yaml -------------------------------------------------------------------------------- /test/e2e/verify/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/metrics.yaml -------------------------------------------------------------------------------- /test/e2e/verify/optional-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/optional-plugin.yaml -------------------------------------------------------------------------------- /test/e2e/verify/replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/replicas.yaml -------------------------------------------------------------------------------- /test/e2e/verify/satellite-hpa-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/satellite-hpa-metrics.yaml -------------------------------------------------------------------------------- /test/e2e/verify/satellite-replicas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/satellite-replicas.yaml -------------------------------------------------------------------------------- /test/e2e/verify/service-apdex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/service-apdex.yaml -------------------------------------------------------------------------------- /test/e2e/verify/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/service.yaml -------------------------------------------------------------------------------- /test/e2e/verify/swagent-configmap-initcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/swagent-configmap-initcontainer.yaml -------------------------------------------------------------------------------- /test/e2e/verify/swagent-configmap-target-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/swagent-configmap-target-container.yaml -------------------------------------------------------------------------------- /test/e2e/verify/swagent-initcontainer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/swagent-initcontainer.yaml -------------------------------------------------------------------------------- /test/e2e/verify/swagent-target-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/swagent-target-container.yaml -------------------------------------------------------------------------------- /test/e2e/verify/swagent-volumemount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-swck/HEAD/test/e2e/verify/swagent-volumemount.yaml --------------------------------------------------------------------------------