├── .codespellrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── distributors-application.md │ ├── enhancement.md │ ├── flaking-test.md │ ├── good-first.md │ ├── membership-request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── ci.yaml │ ├── code-spell.yml │ ├── e2e.yaml │ ├── fossa.yaml │ ├── release-charts.yaml │ ├── release-image.yaml │ └── release-master.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Makefile.tools.mk ├── NOTICE ├── OWNERS ├── README.md ├── ROADMAP.md ├── SECURITY.md ├── cmd ├── cluster-operator │ ├── Dockerfile │ ├── README.md │ ├── attachedcluster │ │ └── attachedcluster.go │ ├── aws │ │ └── aws.go │ ├── capi │ │ └── capi.go │ ├── customcluster │ │ └── customcluster.go │ ├── infra │ │ └── infra.go │ ├── main.go │ ├── options │ │ ├── aws.go │ │ └── options.go │ └── scheme │ │ ├── aws.go │ │ ├── capi.go │ │ └── scheme.go ├── crd-gen-tool │ ├── README.md │ └── main.go ├── fleet-manager │ ├── Dockerfile │ ├── application │ │ └── application.go │ ├── backup │ │ └── backup.go │ ├── main.go │ ├── options │ │ └── options.go │ ├── pipeline │ │ └── pipeline.go │ └── scheme │ │ ├── flux.go │ │ └── scheme.go └── kurator │ ├── app │ ├── app.go │ ├── install │ │ ├── argocd │ │ │ └── argocd.go │ │ ├── install.go │ │ ├── istio │ │ │ └── istio.go │ │ ├── karmada │ │ │ └── karmada.go │ │ ├── kubeedge │ │ │ └── kubeedge.go │ │ ├── pixie │ │ │ ├── pixie.go │ │ │ └── vizier │ │ │ │ └── vizier.go │ │ ├── prometheus │ │ │ └── prometheus.go │ │ ├── submariner │ │ │ └── submariner.go │ │ ├── thanos │ │ │ └── thanos.go │ │ └── volcano │ │ │ └── volcano.go │ ├── join │ │ ├── join.go │ │ ├── karmada │ │ │ └── karmada.go │ │ └── kubeedge │ │ │ └── kubeedge.go │ ├── pipeline │ │ ├── execution │ │ │ ├── execution.go │ │ │ ├── list │ │ │ │ └── list.go │ │ │ └── logs │ │ │ │ └── logs.go │ │ └── pipeline.go │ ├── tool │ │ └── tool.go │ └── version │ │ └── version.go │ └── main.go ├── common └── config │ ├── .cr.yaml │ ├── .golangci.yml │ ├── license-lint.yaml │ └── mdl.json ├── community ├── compliance │ ├── allowed-licenses-list.md │ ├── dep-approvers.md │ └── dependence-compliance.md ├── membership │ └── community-membership.md └── security │ ├── README.md │ ├── SECURITY.md │ ├── comms-templates │ ├── join-announcement-email-list.md │ └── vulnerability-report-template.md │ ├── images │ ├── vulnerability-handling-process.PNG │ └── vulnerability-process-timeline.PNG │ ├── private-distributors-list.md │ ├── report-a-vulnerability.md │ ├── security-groups.md │ └── security-release-process.md ├── docs ├── README.md ├── assets │ ├── icons │ │ └── logo.svg │ └── scss │ │ └── _nav.scss ├── config.toml ├── content │ └── en │ │ ├── _index.html │ │ ├── blog │ │ ├── 0.2.0_release.md │ │ ├── 0.3.0_release.md │ │ ├── 0.4.0_release.md │ │ ├── 0.5.0_release.md │ │ ├── _index.md │ │ ├── image │ │ │ ├── cluster-operator.png │ │ │ ├── clusterapi-aws.png │ │ │ ├── customcluster-controller.svg │ │ │ ├── fleet-arch.png │ │ │ ├── kubespray-arch.svg │ │ │ └── on-premise-vip.png │ │ └── kurator_or_kubespray.md │ │ ├── boilerplates │ │ ├── build-from-source.md │ │ ├── cleanup.md │ │ ├── index.md │ │ ├── install-cluster-operator.md │ │ ├── install-fleet-manager.md │ │ ├── prepare-aws.md │ │ ├── prerequisites-karmada.md │ │ └── prerequisites.md │ │ ├── community │ │ └── _index.md │ │ ├── docs │ │ ├── Integrations │ │ │ ├── _index.md │ │ │ ├── argocd.md │ │ │ ├── image │ │ │ │ ├── app-source.PNG │ │ │ │ ├── application-page.PNG │ │ │ │ ├── clusters.PNG │ │ │ │ ├── deployment-status.PNG │ │ │ │ ├── login.PNG │ │ │ │ ├── new-app.PNG │ │ │ │ ├── pixie-admin-page.png │ │ │ │ ├── pixie.png │ │ │ │ ├── sync-output.PNG │ │ │ │ ├── sync.PNG │ │ │ │ └── thanos.png │ │ │ ├── istio.md │ │ │ ├── karmada.md │ │ │ ├── pixie-vizier.md │ │ │ └── thanos.md │ │ ├── _index.md │ │ ├── cluster-operator │ │ │ ├── _index.md │ │ │ ├── aws-irsa.md │ │ │ ├── image │ │ │ │ └── cluster-operator.svg │ │ │ ├── kurator-cluster-api.md │ │ │ └── on-premise-cluster-lifecycle.md │ │ ├── fleet-manager │ │ │ ├── _index.md │ │ │ ├── application.md │ │ │ ├── backup │ │ │ │ ├── _index.md │ │ │ │ ├── backup-plugin.md │ │ │ │ ├── backup.md │ │ │ │ ├── image │ │ │ │ │ ├── backup-arch.svg │ │ │ │ │ └── migrate.svg │ │ │ │ ├── migrate.md │ │ │ │ └── restore.md │ │ │ ├── create-fleet.md │ │ │ ├── distributedstorage-plugin.md │ │ │ ├── image │ │ │ │ ├── distributedstorage.svg │ │ │ │ ├── fleet-application.svg │ │ │ │ ├── fleet-manager.svg │ │ │ │ ├── fleet-metric.svg │ │ │ │ ├── fleet-policy.svg │ │ │ │ └── grafana-thanos.jpeg │ │ │ ├── manage-attachedcluster.md │ │ │ ├── metric-plugin.md │ │ │ ├── policy.md │ │ │ ├── rollout │ │ │ │ ├── _index.md │ │ │ │ ├── abtest │ │ │ │ │ ├── Istio-abtest.md │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── image │ │ │ │ │ │ └── abtesting.svg │ │ │ │ │ └── nginx-abtest.md │ │ │ │ ├── blue-green │ │ │ │ │ ├── Istio-blue-green.md │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── image │ │ │ │ │ │ ├── blue-green-failed.svg │ │ │ │ │ │ └── blue-green-successful.svg │ │ │ │ │ └── nginx-blue-green.md │ │ │ │ ├── canary │ │ │ │ │ ├── Istio-canary.md │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── image │ │ │ │ │ │ └── canary.svg │ │ │ │ │ ├── kuma-canary.md │ │ │ │ │ └── nginx-canary.md │ │ │ │ ├── image │ │ │ │ │ ├── rollout.svg │ │ │ │ │ └── traffic.svg │ │ │ │ └── rollout-plugin.md │ │ │ └── submariner-plugin.md │ │ ├── pipeline │ │ │ ├── _index.md │ │ │ ├── chain-security.md │ │ │ ├── image │ │ │ │ ├── chain-security.png │ │ │ │ ├── pipeline-arch.svg │ │ │ │ ├── use-pipeline.svg │ │ │ │ └── webhook.png │ │ │ ├── operation.md │ │ │ └── setting.md │ │ ├── references │ │ │ ├── _index.md │ │ │ ├── app-api.md │ │ │ ├── backup-api.md │ │ │ ├── cluster-api.md │ │ │ ├── fleet-api.md │ │ │ ├── infra-api.md │ │ │ └── pipeline-api.md │ │ └── setup │ │ │ ├── _index.md │ │ │ ├── insatll-kurator.md │ │ │ ├── install-cluster-operator.md │ │ │ ├── install-fleet-manager.md │ │ │ └── install-minio.md │ │ ├── references │ │ ├── apps_v1alpha1_types.html │ │ ├── backups_v1alpha1_types.html │ │ ├── cluster_v1alpha1_types.html │ │ ├── fleet_v1alpha1_types.html │ │ ├── index.md │ │ ├── infra_v1alpha1_types.html │ │ └── pipeline_v1alpha1_types.html │ │ └── search.md ├── go.mod ├── go.sum ├── images │ └── kurator-arch.svg ├── layouts │ ├── _default │ │ └── baseof.html │ └── shortcodes │ │ ├── boilerplate.html │ │ ├── image.html │ │ ├── kurator-version.html │ │ └── reference.html ├── netlify.toml ├── package.json └── proposals │ ├── application │ └── single_cluster_deployment_application.md │ ├── backup │ ├── backup.md │ └── image │ │ ├── backup-struct.svg │ │ ├── backup.svg │ │ └── migrate.svg │ ├── distributedstorage │ └── distributedstorage.md │ ├── pipeline │ ├── image │ │ ├── pipelinerun-example.svg │ │ ├── trigger.svg │ │ └── use-pipeline.svg │ └── pipeline.md │ ├── proposal-template │ └── proposal-template.md │ ├── rollout │ ├── Add_Gateway_Plugin_Support.md │ └── rollout.md │ └── submariner │ └── submariner_as_fleet_plugin.md ├── e2e ├── fleet_attachedcluster_test.go ├── framework │ └── cluster.go ├── resources │ ├── attachedcluster.go │ ├── constant.go │ ├── fleet.go │ ├── namespace.go │ ├── secret.go │ └── util.go ├── suite.go └── suite_test.go ├── examples ├── application │ ├── cluster-selector-demo.yaml │ ├── common │ │ ├── attachedcluster.yaml │ │ └── fleet.yaml │ ├── gitrepo-helmrelease-demo.yaml │ ├── gitrepo-kustomization-demo-without-fleet.yaml │ ├── gitrepo-kustomization-demo.yaml │ └── helmrepo-helmrelease-demo.yaml ├── aws-pod-identity │ └── pod-indentity.yaml ├── backup │ ├── app-backup-demo.yaml │ ├── backup-minimal.yaml │ ├── backup-schedule.yaml │ ├── backup-select-labels.yaml │ ├── busybox-demo │ │ └── busybox.yaml │ ├── migrate-select-labels.yaml │ ├── restore-minimal.yaml │ └── restore-schedule.yaml ├── cluster │ ├── additionalresources.yaml │ ├── enable-pod-identity.yaml │ └── quickstart.yaml ├── fleet │ ├── distributedstorage │ │ ├── blockstore │ │ │ └── block-storage-demo.yaml │ │ ├── filesystemstore │ │ │ └── filesystem-storage-demo.yaml │ │ └── objectstore │ │ │ └── object-storage-demo.yaml │ ├── fleet.yaml │ ├── metric │ │ ├── metric-plugin.yaml │ │ └── monitor-demo │ │ │ └── avalanche.yaml │ ├── network │ │ └── submariner-plugin.yaml │ ├── policy │ │ ├── badpod-demo │ │ │ └── badpod.yaml │ │ └── kyverno.yaml │ └── quickstart.yaml ├── infra │ └── customcluster │ │ ├── cc-cluster.yaml │ │ ├── cc-customcluster.yaml │ │ ├── cc-custommachine.yaml │ │ └── cc-kcp.yaml └── rollout │ ├── ab-testing.yaml │ ├── ab-testingNginx.yaml │ ├── blue_green.yaml │ ├── blue_greenNginx.yaml │ ├── canary.yaml │ ├── canaryKuma.yaml │ ├── canaryNginx.yaml │ └── canaryWithCustomMetric.yaml ├── go.mod ├── go.sum ├── hack ├── OWNERS ├── api-docs │ ├── config.json │ └── template │ │ ├── members.tpl │ │ ├── pkg.tpl │ │ └── type.tpl ├── boilerplate.go.txt ├── boilerplate │ └── boilerplate.go.txt ├── build-thanos.sh ├── crd-ref-docs │ └── config.yaml ├── e2e-test │ ├── build-clusters.sh │ ├── install-kurator.sh │ └── run-e2e.sh ├── fix_copyright_banner.sh ├── gen-api-doc.sh ├── gen-chart.sh ├── gen-check.sh ├── gen-prom.sh ├── gen-thanos.sh ├── golangci-lint.sh ├── image-sign.sh ├── kind-configs-with-worker │ ├── host.yaml │ ├── member1.yaml │ └── member2.yaml ├── kind-configs │ ├── host.yaml │ ├── member1.yaml │ └── member2.yaml ├── licenses-check.sh ├── lint_copyright_banner.sh ├── local-dev-down.sh ├── local-dev-setup.sh ├── local-docsite-build.sh ├── local-docsite-up.sh ├── local-setup-cluster.sh ├── release-artifacts.sh ├── sync-crds.sh ├── tool │ └── tool.go ├── update-codegen.sh ├── update-copyright.sh ├── update-crdgen.sh └── util.sh ├── licenses ├── cloud.google.com │ └── go │ │ ├── compute │ │ └── metadata │ │ │ └── LICENSE │ │ ├── logging │ │ └── LICENSE │ │ └── longrunning │ │ └── LICENSE ├── contrib.go.opencensus.io │ └── exporter │ │ ├── ocagent │ │ └── LICENSE │ │ └── prometheus │ │ └── LICENSE ├── github.com │ ├── Azure │ │ └── azure-sdk-for-go │ │ │ └── sdk │ │ │ ├── azcore │ │ │ └── LICENSE.txt │ │ │ ├── azidentity │ │ │ └── LICENSE.txt │ │ │ └── internal │ │ │ └── LICENSE.txt │ ├── AzureAD │ │ └── microsoft-authentication-library-for-go │ │ │ └── LICENSE │ ├── BurntSushi │ │ └── toml │ │ │ ├── COPYING │ │ │ ├── cmd │ │ │ ├── toml-test-decoder │ │ │ │ └── COPYING │ │ │ ├── toml-test-encoder │ │ │ │ └── COPYING │ │ │ └── tomlv │ │ │ │ └── COPYING │ │ │ └── internal │ │ │ └── toml-test │ │ │ └── COPYING │ ├── MakeNowJust │ │ └── heredoc │ │ │ └── LICENSE │ ├── Masterminds │ │ ├── goutils │ │ │ └── LICENSE.txt │ │ ├── semver │ │ │ └── v3 │ │ │ │ └── LICENSE.txt │ │ └── sprig │ │ │ └── v3 │ │ │ └── LICENSE.txt │ ├── agiledragon │ │ └── gomonkey │ │ │ └── v2 │ │ │ └── LICENSE │ ├── ajeddeloh │ │ └── go-json │ │ │ └── NONE │ ├── alecthomas │ │ └── units │ │ │ └── COPYING │ ├── antlr │ │ └── antlr4 │ │ │ └── runtime │ │ │ └── Go │ │ │ └── antlr │ │ │ └── v4 │ │ │ └── LICENSE │ ├── apparentlymart │ │ └── go-cidr │ │ │ └── LICENSE │ ├── asaskevich │ │ └── govalidator │ │ │ └── LICENSE │ ├── aws │ │ ├── amazon-vpc-cni-k8s │ │ │ └── LICENSE │ │ └── aws-sdk-go │ │ │ ├── LICENSE.txt │ │ │ └── internal │ │ │ └── sync │ │ │ └── singleflight │ │ │ └── LICENSE │ ├── awslabs │ │ └── goformation │ │ │ └── v4 │ │ │ └── LICENSE │ ├── beorn7 │ │ └── perks │ │ │ └── LICENSE │ ├── blang │ │ └── semver │ │ │ ├── LICENSE │ │ │ └── v4 │ │ │ └── LICENSE │ ├── blendle │ │ └── zapdriver │ │ │ └── LICENSE │ ├── cenkalti │ │ └── backoff │ │ │ └── v4 │ │ │ └── LICENSE │ ├── census-instrumentation │ │ └── opencensus-proto │ │ │ └── LICENSE │ ├── cert-manager │ │ └── cert-manager │ │ │ ├── LICENSE │ │ │ ├── logo │ │ │ └── LICENSE │ │ │ └── pkg │ │ │ └── issuer │ │ │ └── acme │ │ │ └── dns │ │ │ ├── azuredns │ │ │ └── LICENSE │ │ │ ├── clouddns │ │ │ └── LICENSE │ │ │ ├── cloudflare │ │ │ └── LICENSE │ │ │ ├── route53 │ │ │ └── LICENSE │ │ │ └── util │ │ │ └── LICENSE │ ├── cespare │ │ └── xxhash │ │ │ └── v2 │ │ │ └── LICENSE.txt │ ├── chai2010 │ │ └── gettext-go │ │ │ └── LICENSE │ ├── cncf │ │ └── xds │ │ │ └── go │ │ │ └── LICENSE │ ├── coredns │ │ ├── caddy │ │ │ └── LICENSE.txt │ │ └── corefile-migration │ │ │ └── LICENSE │ ├── coreos │ │ ├── go-semver │ │ │ └── LICENSE │ │ └── go-systemd │ │ │ ├── LICENSE │ │ │ └── v22 │ │ │ └── LICENSE │ ├── cyphar │ │ └── filepath-securejoin │ │ │ └── LICENSE │ ├── davecgh │ │ └── go-spew │ │ │ └── LICENSE │ ├── docker │ │ └── distribution │ │ │ └── LICENSE │ ├── emicklei │ │ └── go-restful │ │ │ └── v3 │ │ │ └── LICENSE │ ├── envoyproxy │ │ ├── go-control-plane │ │ │ └── LICENSE │ │ └── protoc-gen-validate │ │ │ └── LICENSE │ ├── evanphx │ │ └── json-patch │ │ │ ├── LICENSE │ │ │ └── v5 │ │ │ └── LICENSE │ ├── exponent-io │ │ └── jsonpath │ │ │ └── LICENSE │ ├── fatih │ │ ├── camelcase │ │ │ └── LICENSE.md │ │ └── color │ │ │ └── LICENSE.md │ ├── flatcar │ │ ├── container-linux-config-transpiler │ │ │ └── LICENSE │ │ └── ignition │ │ │ └── LICENSE │ ├── fluxcd │ │ ├── flagger │ │ │ ├── LICENSE │ │ │ └── charts │ │ │ │ └── flagger │ │ │ │ └── LICENSE │ │ ├── helm-controller │ │ │ └── api │ │ │ │ └── LICENSE │ │ ├── kustomize-controller │ │ │ └── api │ │ │ │ └── LICENSE │ │ ├── pkg │ │ │ ├── apis │ │ │ │ ├── acl │ │ │ │ │ └── LICENSE │ │ │ │ ├── kustomize │ │ │ │ │ └── LICENSE │ │ │ │ └── meta │ │ │ │ │ └── LICENSE │ │ │ └── runtime │ │ │ │ └── LICENSE │ │ └── source-controller │ │ │ └── api │ │ │ └── LICENSE │ ├── fsnotify │ │ └── fsnotify │ │ │ └── LICENSE │ ├── fvbommel │ │ └── sortorder │ │ │ └── LICENSE │ ├── go-errors │ │ └── errors │ │ │ └── NONE │ ├── go-kit │ │ └── log │ │ │ ├── LICENSE │ │ │ └── term │ │ │ └── LICENSE │ ├── go-logfmt │ │ └── logfmt │ │ │ └── LICENSE │ ├── go-logr │ │ ├── logr │ │ │ └── LICENSE │ │ └── zapr │ │ │ └── LICENSE │ ├── go-openapi │ │ ├── jsonpointer │ │ │ └── LICENSE │ │ ├── jsonreference │ │ │ └── LICENSE │ │ └── swag │ │ │ └── LICENSE │ ├── gobuffalo │ │ └── flect │ │ │ └── LICENSE │ ├── gobwas │ │ └── glob │ │ │ └── LICENSE │ ├── gogo │ │ └── protobuf │ │ │ └── LICENSE │ ├── golang-jwt │ │ └── jwt │ │ │ └── v5 │ │ │ └── LICENSE │ ├── golang │ │ ├── groupcache │ │ │ └── LICENSE │ │ └── protobuf │ │ │ └── LICENSE │ ├── google │ │ ├── btree │ │ │ └── LICENSE │ │ ├── cel-go │ │ │ └── LICENSE │ │ ├── gnostic │ │ │ └── LICENSE │ │ ├── go-cmp │ │ │ └── LICENSE │ │ ├── gofuzz │ │ │ └── LICENSE │ │ ├── s2a-go │ │ │ └── LICENSE.md │ │ ├── shlex │ │ │ └── COPYING │ │ └── uuid │ │ │ └── LICENSE │ ├── googleapis │ │ ├── enterprise-certificate-proxy │ │ │ └── LICENSE │ │ └── gax-go │ │ │ └── v2 │ │ │ └── LICENSE │ ├── gosuri │ │ └── uitable │ │ │ ├── LICENSE │ │ │ └── util │ │ │ └── wordwrap │ │ │ └── LICENSE.md │ ├── grafana │ │ └── regexp │ │ │ └── LICENSE │ ├── gregjones │ │ └── httpcache │ │ │ └── LICENSE.txt │ ├── grpc-ecosystem │ │ └── grpc-gateway │ │ │ └── v2 │ │ │ ├── LICENSE.txt │ │ │ └── internal │ │ │ └── casing │ │ │ └── LICENSE.md │ ├── hashicorp │ │ ├── errwrap │ │ │ └── LICENSE │ │ ├── go-multierror │ │ │ └── LICENSE │ │ └── go-version │ │ │ └── LICENSE │ ├── huandu │ │ └── xstrings │ │ │ └── LICENSE │ ├── imdario │ │ └── mergo │ │ │ └── LICENSE │ ├── jmespath │ │ └── go-jmespath │ │ │ └── LICENSE │ ├── jonboulle │ │ └── clockwork │ │ │ └── LICENSE │ ├── josharian │ │ └── intern │ │ │ └── license.md │ ├── jpillora │ │ └── backoff │ │ │ └── LICENSE │ ├── json-iterator │ │ └── go │ │ │ └── LICENSE │ ├── karmada-io │ │ └── karmada │ │ │ └── LICENSE │ ├── kr │ │ ├── fs │ │ │ └── LICENSE │ │ ├── pretty │ │ │ └── License │ │ └── text │ │ │ └── License │ ├── kylelemons │ │ └── godebug │ │ │ └── LICENSE │ ├── lestrrat-go │ │ ├── backoff │ │ │ └── v2 │ │ │ │ └── LICENSE │ │ ├── blackmagic │ │ │ └── LICENSE │ │ ├── httpcc │ │ │ └── LICENSE │ │ ├── iter │ │ │ └── LICENSE │ │ ├── jwx │ │ │ └── LICENSE │ │ └── option │ │ │ └── LICENSE │ ├── liggitt │ │ └── tabwriter │ │ │ └── LICENSE │ ├── mailru │ │ └── easyjson │ │ │ └── LICENSE │ ├── mattn │ │ ├── go-colorable │ │ │ └── LICENSE │ │ ├── go-isatty │ │ │ └── LICENSE │ │ └── go-runewidth │ │ │ └── LICENSE │ ├── matttproud │ │ └── golang_protobuf_extensions │ │ │ └── LICENSE │ ├── mitchellh │ │ ├── copystructure │ │ │ └── LICENSE │ │ ├── go-homedir │ │ │ └── LICENSE │ │ ├── go-wordwrap │ │ │ └── LICENSE.md │ │ └── reflectwalk │ │ │ └── LICENSE │ ├── moby │ │ ├── spdystream │ │ │ └── LICENSE │ │ └── term │ │ │ └── LICENSE │ ├── modern-go │ │ ├── concurrent │ │ │ └── LICENSE │ │ └── reflect2 │ │ │ └── LICENSE │ ├── monochromegane │ │ └── go-gitignore │ │ │ └── LICENSE │ ├── munnerz │ │ └── goautoneg │ │ │ └── LICENSE │ ├── mwitkow │ │ └── go-conntrack │ │ │ └── LICENSE │ ├── onsi │ │ ├── ginkgo │ │ │ └── v2 │ │ │ │ └── LICENSE │ │ └── gomega │ │ │ └── LICENSE │ ├── opencontainers │ │ └── go-digest │ │ │ └── LICENSE │ ├── peterbourgon │ │ └── diskv │ │ │ └── LICENSE │ ├── pkg │ │ ├── browser │ │ │ └── LICENSE │ │ ├── errors │ │ │ └── LICENSE │ │ └── sftp │ │ │ └── LICENSE │ ├── pmezard │ │ └── go-difflib │ │ │ └── LICENSE │ ├── prometheus-operator │ │ └── prometheus-operator │ │ │ └── pkg │ │ │ ├── apis │ │ │ └── monitoring │ │ │ │ └── LICENSE │ │ │ └── client │ │ │ └── LICENSE │ ├── prometheus │ │ ├── client_golang │ │ │ └── LICENSE │ │ ├── client_model │ │ │ └── LICENSE │ │ ├── common │ │ │ ├── LICENSE │ │ │ └── sigv4 │ │ │ │ └── LICENSE │ │ ├── procfs │ │ │ └── LICENSE │ │ ├── prometheus │ │ │ └── LICENSE │ │ └── statsd_exporter │ │ │ └── LICENSE │ ├── rivo │ │ └── uniseg │ │ │ └── LICENSE.txt │ ├── robfig │ │ └── cron │ │ │ └── v3 │ │ │ └── LICENSE │ ├── rogpeppe │ │ └── go-internal │ │ │ └── LICENSE │ ├── russross │ │ └── blackfriday │ │ │ └── v2 │ │ │ └── LICENSE.txt │ ├── sanathkr │ │ ├── go-yaml │ │ │ └── LICENSE │ │ └── yaml │ │ │ └── LICENSE │ ├── shopspring │ │ └── decimal │ │ │ └── LICENSE │ ├── sirupsen │ │ └── logrus │ │ │ └── LICENSE │ ├── spf13 │ │ ├── cast │ │ │ └── LICENSE │ │ ├── cobra │ │ │ └── LICENSE.txt │ │ └── pflag │ │ │ └── LICENSE │ ├── stoewer │ │ └── go-strcase │ │ │ └── LICENSE │ ├── stretchr │ │ └── testify │ │ │ └── LICENSE │ ├── tektoncd │ │ └── pipeline │ │ │ └── LICENSE │ ├── valyala │ │ └── fastjson │ │ │ └── LICENSE │ ├── vincent-petithory │ │ └── dataurl │ │ │ └── LICENSE │ ├── vmware-tanzu │ │ └── velero │ │ │ └── LICENSE │ ├── xeipuuv │ │ ├── gojsonpointer │ │ │ └── NONE │ │ ├── gojsonreference │ │ │ └── NONE │ │ └── gojsonschema │ │ │ └── NONE │ ├── xlab │ │ └── treeprint │ │ │ └── LICENSE │ └── yuin │ │ └── gopher-lua │ │ └── LICENSE ├── go.etcd.io │ └── etcd │ │ ├── api │ │ └── v3 │ │ │ └── LICENSE │ │ └── client │ │ ├── pkg │ │ └── v3 │ │ │ └── LICENSE │ │ └── v3 │ │ └── LICENSE ├── go.opencensus.io │ └── LICENSE ├── go.opentelemetry.io │ └── proto │ │ └── otlp │ │ └── LICENSE ├── go.starlark.net │ └── LICENSE ├── go.uber.org │ ├── atomic │ │ └── LICENSE.txt │ ├── multierr │ │ └── LICENSE.txt │ └── zap │ │ └── LICENSE.txt ├── go4.org │ └── LICENSE ├── golang.org │ └── x │ │ ├── crypto │ │ └── LICENSE │ │ ├── exp │ │ └── LICENSE │ │ ├── net │ │ └── LICENSE │ │ ├── oauth2 │ │ └── LICENSE │ │ ├── sync │ │ └── LICENSE │ │ ├── sys │ │ └── LICENSE │ │ ├── term │ │ └── LICENSE │ │ ├── text │ │ └── LICENSE │ │ └── time │ │ └── LICENSE ├── gomodules.xyz │ └── jsonpatch │ │ └── v2 │ │ └── LICENSE ├── google.golang.org │ ├── api │ │ ├── LICENSE │ │ └── internal │ │ │ └── third_party │ │ │ └── uritemplates │ │ │ └── LICENSE │ ├── genproto │ │ ├── LICENSE │ │ └── googleapis │ │ │ ├── api │ │ │ └── LICENSE │ │ │ └── rpc │ │ │ └── LICENSE │ ├── grpc │ │ └── LICENSE │ └── protobuf │ │ └── LICENSE ├── gopkg.in │ ├── inf.v0 │ │ └── LICENSE │ ├── natefinch │ │ └── lumberjack.v2 │ │ │ └── LICENSE │ ├── square │ │ └── go-jose.v2 │ │ │ ├── LICENSE │ │ │ └── json │ │ │ └── LICENSE │ ├── yaml.v2 │ │ └── LICENSE │ └── yaml.v3 │ │ └── LICENSE ├── helm.sh │ └── helm │ │ └── v3 │ │ ├── LICENSE │ │ └── pkg │ │ ├── chart │ │ └── loader │ │ │ └── testdata │ │ │ ├── LICENSE │ │ │ ├── frobnitz.v1 │ │ │ └── LICENSE │ │ │ ├── frobnitz.v2.reqs │ │ │ └── LICENSE │ │ │ ├── frobnitz │ │ │ └── LICENSE │ │ │ ├── frobnitz_backslash │ │ │ └── LICENSE │ │ │ ├── frobnitz_with_bom │ │ │ └── LICENSE │ │ │ └── frobnitz_with_dev_null │ │ │ └── LICENSE │ │ └── chartutil │ │ └── testdata │ │ ├── dependent-chart-alias │ │ └── LICENSE │ │ ├── dependent-chart-no-requirements-yaml │ │ └── LICENSE │ │ ├── dependent-chart-with-all-in-requirements-yaml │ │ └── LICENSE │ │ ├── dependent-chart-with-mixed-requirements-yaml │ │ └── LICENSE │ │ └── frobnitz │ │ └── LICENSE ├── istio.io │ ├── api │ │ └── LICENSE │ ├── client-go │ │ └── LICENSE │ ├── istio │ │ └── LICENSE │ └── pkg │ │ └── LICENSE ├── k8s.io │ ├── api │ │ └── LICENSE │ ├── apiextensions-apiserver │ │ └── LICENSE │ ├── apimachinery │ │ ├── LICENSE │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── LICENSE │ ├── apiserver │ │ └── LICENSE │ ├── cli-runtime │ │ └── LICENSE │ ├── client-go │ │ ├── LICENSE │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── LICENSE │ ├── cluster-bootstrap │ │ └── LICENSE │ ├── component-base │ │ └── LICENSE │ ├── klog │ │ └── v2 │ │ │ └── LICENSE │ ├── kube-aggregator │ │ └── LICENSE │ ├── kube-openapi │ │ ├── LICENSE │ │ └── pkg │ │ │ ├── internal │ │ │ └── third_party │ │ │ │ └── go-json-experiment │ │ │ │ └── json │ │ │ │ └── LICENSE │ │ │ └── validation │ │ │ ├── errors │ │ │ └── LICENSE │ │ │ ├── spec │ │ │ └── LICENSE │ │ │ ├── strfmt │ │ │ └── LICENSE │ │ │ └── validate │ │ │ └── LICENSE │ ├── kubectl │ │ └── LICENSE │ └── utils │ │ ├── LICENSE │ │ ├── inotify │ │ └── LICENSE │ │ ├── internal │ │ └── third_party │ │ │ └── forked │ │ │ └── golang │ │ │ └── LICENSE │ │ └── third_party │ │ └── forked │ │ └── golang │ │ └── LICENSE ├── knative.dev │ └── pkg │ │ ├── LICENSE │ │ └── third_party │ │ └── mako │ │ └── LICENSE └── sigs.k8s.io │ ├── cluster-api-provider-aws │ └── v2 │ │ └── LICENSE │ ├── cluster-api │ ├── LICENSE │ └── logos │ │ └── LICENSE.md │ ├── controller-runtime │ └── LICENSE │ ├── gateway-api │ └── LICENSE │ ├── json │ └── LICENSE │ ├── kustomize │ ├── api │ │ └── LICENSE │ └── kyaml │ │ ├── LICENSE │ │ └── internal │ │ └── forked │ │ └── github.com │ │ ├── go-yaml │ │ └── yaml │ │ │ └── LICENSE │ │ └── qri-io │ │ └── starlib │ │ └── util │ │ └── LICENSE │ ├── mcs-api │ └── LICENSE │ ├── structured-merge-diff │ └── v4 │ │ └── LICENSE │ └── yaml │ ├── LICENSE │ ├── goyaml.v2 │ └── LICENSE │ └── goyaml.v3 │ └── LICENSE ├── manifests ├── OWNERS ├── charts │ ├── cluster-operator │ │ ├── Chart.yaml │ │ ├── crds │ │ │ ├── awsclustercontrolleridentities.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsclusterroleidentities.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsclusters.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsclusterstaticidentities.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsclustertemplates.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsfargateprofiles.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsmachinepools.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsmachines.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsmachinetemplates.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsmanagedclusters.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── awsmanagedcontrolplanes.controlplane.cluster.x-k8s.io.yaml │ │ │ ├── awsmanagedmachinepools.infrastructure.cluster.x-k8s.io.yaml │ │ │ ├── cluster.kurator.dev_attachedclusters.yaml │ │ │ ├── cluster.kurator.dev_clusters.yaml │ │ │ ├── clusterclasses.cluster.x-k8s.io.yaml │ │ │ ├── clusterresourcesetbindings.addons.cluster.x-k8s.io.yaml │ │ │ ├── clusterresourcesets.addons.cluster.x-k8s.io.yaml │ │ │ ├── clusters.cluster.x-k8s.io.yaml │ │ │ ├── eksconfigs.bootstrap.cluster.x-k8s.io.yaml │ │ │ ├── eksconfigtemplates.bootstrap.cluster.x-k8s.io.yaml │ │ │ ├── extensionconfigs.runtime.cluster.x-k8s.io.yaml │ │ │ ├── infrastructure.cluster.x-k8s.io_customclusters.yaml │ │ │ ├── infrastructure.cluster.x-k8s.io_custommachines.yaml │ │ │ ├── ipaddressclaims.ipam.cluster.x-k8s.io.yaml │ │ │ ├── ipaddresses.ipam.cluster.x-k8s.io.yaml │ │ │ ├── kubeadmconfigs.bootstrap.cluster.x-k8s.io.yaml │ │ │ ├── kubeadmconfigtemplates.bootstrap.cluster.x-k8s.io.yaml │ │ │ ├── kubeadmcontrolplanes.controlplane.cluster.x-k8s.io.yaml │ │ │ ├── kubeadmcontrolplanetemplates.controlplane.cluster.x-k8s.io.yaml │ │ │ ├── machinedeployments.cluster.x-k8s.io.yaml │ │ │ ├── machinehealthchecks.cluster.x-k8s.io.yaml │ │ │ ├── machinepools.cluster.x-k8s.io.yaml │ │ │ ├── machines.cluster.x-k8s.io.yaml │ │ │ └── machinesets.cluster.x-k8s.io.yaml │ │ ├── templates │ │ │ ├── _helpers.tpl │ │ │ ├── aws-secret.yaml │ │ │ ├── capa-mutating-webhook-configuration.yaml │ │ │ ├── capa-validating-webhook-configuration.yaml │ │ │ ├── capi-kubeadm-bootstrap-mutating-webhook-configuration.yaml │ │ │ ├── capi-kubeadm-bootstrap-validating-webhook-configuration.yaml │ │ │ ├── capi-kubeadm-control-plane-mutating-webhook-configuration.yaml │ │ │ ├── capi-kubeadm-control-plane-validating-webhook-configuration.yaml │ │ │ ├── capi-mutating-webhook-configuration.yaml │ │ │ ├── capi-validating-webhook-configuration.yaml │ │ │ ├── certmanager.yaml │ │ │ ├── deployment.yaml │ │ │ ├── leader-rbac.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service.yaml │ │ │ ├── serviceaccount.yaml │ │ │ └── webhooks.yaml │ │ └── values.yaml │ └── fleet-manager │ │ ├── Chart.yaml │ │ ├── crds │ │ ├── apps.kurator.dev_applications.yaml │ │ ├── backup.kurator.dev_backups.yaml │ │ ├── backup.kurator.dev_migrates.yaml │ │ ├── backup.kurator.dev_restores.yaml │ │ ├── fleet.kurator.dev_fleets.yaml │ │ └── pipeline.kurator.dev_pipelines.yaml │ │ ├── templates │ │ ├── deployment.yaml │ │ ├── fleet-worker-clusterrole.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ └── webhooks.yaml │ │ └── values.yaml ├── config │ └── crds │ │ └── kustomization.yml ├── jsonnet │ ├── prometheus │ │ ├── prometheus.jsonnet │ │ └── thanos.jsonnet │ └── thanos │ │ └── thanos.jsonnet ├── manifests.go └── profiles │ ├── components.yaml │ ├── eastwest.tmpl.yaml │ ├── expose-services.yaml │ ├── infra │ ├── capitpls │ │ └── aws.yaml.tpl │ └── plugins │ │ └── aws-cni-calico.yaml │ ├── istio-namespace-override.tmpl.yaml │ ├── prom-thanos │ ├── kube-state-metrics-clusterRole.yaml │ ├── kube-state-metrics-clusterRoleBinding.yaml │ ├── kube-state-metrics-deployment.yaml │ ├── kube-state-metrics-networkPolicy.yaml │ ├── kube-state-metrics-prometheusRule.yaml │ ├── kube-state-metrics-service.yaml │ ├── kube-state-metrics-serviceAccount.yaml │ ├── kube-state-metrics-serviceMonitor.yaml │ ├── kubernetes-prometheusRule.yaml │ ├── kubernetes-serviceMonitorApiserver.yaml │ ├── kubernetes-serviceMonitorCoreDNS.yaml │ ├── kubernetes-serviceMonitorKubeControllerManager.yaml │ ├── kubernetes-serviceMonitorKubeScheduler.yaml │ ├── kubernetes-serviceMonitorKubelet.yaml │ ├── prometheus-clusterRole.yaml │ ├── prometheus-clusterRoleBinding.yaml │ ├── prometheus-networkPolicy.yaml │ ├── prometheus-operator-serviceMonitor.yaml │ ├── prometheus-podDisruptionBudget.yaml │ ├── prometheus-prometheus.yaml │ ├── prometheus-prometheusRule.yaml │ ├── prometheus-prometheusRuleThanosSidecar.yaml │ ├── prometheus-roleBindingConfig.yaml │ ├── prometheus-roleConfig.yaml │ ├── prometheus-service.yaml │ ├── prometheus-serviceAccount.yaml │ ├── prometheus-serviceMonitor.yaml │ ├── prometheus-serviceMonitorThanosSidecar.yaml │ ├── prometheus-serviceThanosSidecar.yaml │ └── setup │ │ ├── 0namespace-namespace.yaml │ │ ├── prometheus-operator-0alertmanagerConfigCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0alertmanagerCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0podmonitorCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0probeCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusagentCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusruleCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0scrapeconfigCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0servicemonitorCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0thanosrulerCustomResourceDefinition.yaml │ │ ├── prometheus-operator-clusterRole.yaml │ │ ├── prometheus-operator-clusterRoleBinding.yaml │ │ ├── prometheus-operator-deployment.yaml │ │ ├── prometheus-operator-networkPolicy.yaml │ │ ├── prometheus-operator-service.yaml │ │ └── prometheus-operator-serviceAccount.yaml │ ├── prom │ ├── kube-state-metrics-clusterRole.yaml │ ├── kube-state-metrics-clusterRoleBinding.yaml │ ├── kube-state-metrics-deployment.yaml │ ├── kube-state-metrics-networkPolicy.yaml │ ├── kube-state-metrics-prometheusRule.yaml │ ├── kube-state-metrics-service.yaml │ ├── kube-state-metrics-serviceAccount.yaml │ ├── kube-state-metrics-serviceMonitor.yaml │ ├── kubernetes-prometheusRule.yaml │ ├── kubernetes-serviceMonitorApiserver.yaml │ ├── kubernetes-serviceMonitorCoreDNS.yaml │ ├── kubernetes-serviceMonitorKubeControllerManager.yaml │ ├── kubernetes-serviceMonitorKubeScheduler.yaml │ ├── kubernetes-serviceMonitorKubelet.yaml │ ├── prometheus-clusterRole.yaml │ ├── prometheus-clusterRoleBinding.yaml │ ├── prometheus-networkPolicy.yaml │ ├── prometheus-operator-serviceMonitor.yaml │ ├── prometheus-podDisruptionBudget.yaml │ ├── prometheus-prometheus.yaml │ ├── prometheus-prometheusRule.yaml │ ├── prometheus-roleBindingConfig.yaml │ ├── prometheus-roleConfig.yaml │ ├── prometheus-service.yaml │ ├── prometheus-serviceAccount.yaml │ ├── prometheus-serviceMonitor.yaml │ └── setup │ │ ├── 0namespace-namespace.yaml │ │ ├── prometheus-operator-0alertmanagerConfigCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0alertmanagerCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0podmonitorCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0probeCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusagentCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0prometheusruleCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0scrapeconfigCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0servicemonitorCustomResourceDefinition.yaml │ │ ├── prometheus-operator-0thanosrulerCustomResourceDefinition.yaml │ │ ├── prometheus-operator-clusterRole.yaml │ │ ├── prometheus-operator-clusterRoleBinding.yaml │ │ ├── prometheus-operator-deployment.yaml │ │ ├── prometheus-operator-networkPolicy.yaml │ │ ├── prometheus-operator-service.yaml │ │ └── prometheus-operator-serviceAccount.yaml │ └── thanos │ ├── thanos-query-deployment.yaml │ ├── thanos-query-service.yaml │ ├── thanos-query-serviceAccount.yaml │ ├── thanos-query-serviceMonitor.yaml │ ├── thanos-receive-ingestor-default-service.yaml │ ├── thanos-receive-ingestor-default-statefulSet.yaml │ ├── thanos-receive-ingestor-serviceAccount.yaml │ ├── thanos-receive-router-configmap.yaml │ ├── thanos-receive-router-deployment.yaml │ ├── thanos-receive-router-service.yaml │ ├── thanos-receive-router-serviceAccount.yaml │ ├── thanos-store-service.yaml │ ├── thanos-store-serviceAccount.yaml │ ├── thanos-store-serviceMonitor.yaml │ └── thanos-store-statefulSet.yaml └── pkg ├── apis ├── apps │ └── v1alpha1 │ │ ├── doc.go │ │ ├── helm_release.go │ │ ├── kustomization.go │ │ ├── types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go ├── backups │ └── v1alpha1 │ │ ├── backup_type.go │ │ ├── common_type.go │ │ ├── doc.go │ │ ├── migrate_type.go │ │ ├── restore_type.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go ├── cluster │ └── v1alpha1 │ │ ├── attached_cluster_types.go │ │ ├── cluster_consts.go │ │ ├── cluster_types.go │ │ ├── doc.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go ├── fleet │ └── v1alpha1 │ │ ├── doc.go │ │ ├── types.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go ├── infra │ └── v1alpha1 │ │ ├── cluster.go │ │ ├── doc.go │ │ ├── machine.go │ │ ├── zz_generated.deepcopy.go │ │ └── zz_generated.register.go └── pipeline │ └── v1alpha1 │ ├── doc.go │ ├── type.go │ ├── zz_generated.deepcopy.go │ └── zz_generated.register.go ├── client-go └── generated │ ├── clientset │ └── versioned │ │ ├── clientset.go │ │ ├── doc.go │ │ ├── fake │ │ ├── clientset_generated.go │ │ ├── doc.go │ │ └── register.go │ │ ├── scheme │ │ ├── doc.go │ │ └── register.go │ │ └── typed │ │ ├── apps │ │ └── v1alpha1 │ │ │ ├── application.go │ │ │ ├── apps_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_application.go │ │ │ └── fake_apps_client.go │ │ │ └── generated_expansion.go │ │ ├── backups │ │ └── v1alpha1 │ │ │ ├── backup.go │ │ │ ├── backups_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_backup.go │ │ │ └── fake_backups_client.go │ │ │ └── generated_expansion.go │ │ ├── cluster │ │ └── v1alpha1 │ │ │ ├── attachedcluster.go │ │ │ ├── cluster.go │ │ │ ├── cluster_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_attachedcluster.go │ │ │ ├── fake_cluster.go │ │ │ └── fake_cluster_client.go │ │ │ └── generated_expansion.go │ │ ├── fleet │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_fleet.go │ │ │ └── fake_fleet_client.go │ │ │ ├── fleet.go │ │ │ ├── fleet_client.go │ │ │ └── generated_expansion.go │ │ ├── infra │ │ └── v1alpha1 │ │ │ ├── customcluster.go │ │ │ ├── custommachine.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_customcluster.go │ │ │ ├── fake_custommachine.go │ │ │ └── fake_infra_client.go │ │ │ ├── generated_expansion.go │ │ │ └── infra_client.go │ │ └── pipeline │ │ └── v1alpha1 │ │ ├── doc.go │ │ ├── fake │ │ ├── doc.go │ │ ├── fake_pipeline.go │ │ └── fake_pipeline_client.go │ │ ├── generated_expansion.go │ │ ├── pipeline.go │ │ └── pipeline_client.go │ ├── informers │ └── externalversions │ │ ├── apps │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── application.go │ │ │ └── interface.go │ │ ├── backups │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── backup.go │ │ │ └── interface.go │ │ ├── cluster │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── attachedcluster.go │ │ │ ├── cluster.go │ │ │ └── interface.go │ │ ├── factory.go │ │ ├── fleet │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── fleet.go │ │ │ └── interface.go │ │ ├── generic.go │ │ ├── infra │ │ ├── interface.go │ │ └── v1alpha1 │ │ │ ├── customcluster.go │ │ │ ├── custommachine.go │ │ │ └── interface.go │ │ ├── internalinterfaces │ │ └── factory_interfaces.go │ │ └── pipeline │ │ ├── interface.go │ │ └── v1alpha1 │ │ ├── interface.go │ │ └── pipeline.go │ └── listers │ ├── apps │ └── v1alpha1 │ │ ├── application.go │ │ └── expansion_generated.go │ ├── backups │ └── v1alpha1 │ │ ├── backup.go │ │ └── expansion_generated.go │ ├── cluster │ └── v1alpha1 │ │ ├── attachedcluster.go │ │ ├── cluster.go │ │ └── expansion_generated.go │ ├── fleet │ └── v1alpha1 │ │ ├── expansion_generated.go │ │ └── fleet.go │ ├── infra │ └── v1alpha1 │ │ ├── customcluster.go │ │ ├── custommachine.go │ │ └── expansion_generated.go │ └── pipeline │ └── v1alpha1 │ ├── expansion_generated.go │ └── pipeline.go ├── client ├── client.go └── helmclient.go ├── cluster-operator ├── attachedcluster_controller.go ├── cluster_controller.go ├── customcluster_clusterconfig.template ├── customcluster_clusterhosts.template ├── customcluster_controller.go ├── customcluster_controller_test.go ├── customcluster_helper.go ├── customcluster_helper_test.go ├── customcluster_scale.go ├── customcluster_scale_test.go ├── customcluster_upgrade.go ├── customcluster_upgrade_test.go └── custommachine_controller.go ├── fleet-manager ├── application │ ├── controller.go │ ├── helper.go │ ├── manifests │ │ ├── rollout_testloader.go │ │ ├── rollout_testloader_test.go │ │ └── testdata │ │ │ ├── testloader-deploy.yaml │ │ │ └── testloader-svc.yaml │ ├── rollout_helper.go │ └── rollout_helper_test.go ├── backup │ ├── backup_controller.go │ ├── backup_controller_test.go │ ├── migrate_controller.go │ ├── restore_controller.go │ ├── shared.go │ ├── shared_test.go │ └── testdata │ │ ├── backup │ │ ├── include-ns.yaml │ │ ├── label-selector.yaml │ │ └── schedule.yaml │ │ └── restore │ │ ├── custom-policy.yaml │ │ └── minimal.yaml ├── clusters.go ├── controlplane.go ├── fleet.go ├── fleet_cluster.go ├── fleet_plugin.go ├── fleet_plugin_backup.go ├── fleet_plugin_distributedstorage.go ├── fleet_plugin_flagger.go ├── fleet_plugin_grafana.go ├── fleet_plugin_kyverno.go ├── fleet_plugin_metric.go ├── fleet_plugin_provider.go ├── fleet_plugin_submariner.go ├── manifests │ ├── manifests.go │ ├── plugin.tpl │ └── plugins │ │ ├── flagger.yaml │ │ ├── grafana.yaml │ │ ├── kuma.yaml │ │ ├── kyverno-policies.yaml │ │ ├── kyverno.yaml │ │ ├── nginx.yaml │ │ ├── prometheus.yaml │ │ ├── rook-ceph.yaml │ │ ├── rook.yaml │ │ ├── sm-broker.yaml │ │ ├── sm-operator.yaml │ │ ├── testloader.yaml │ │ ├── thanos.yaml │ │ └── velero.yaml ├── pipeline │ ├── controller.go │ └── render │ │ ├── customTask.go │ │ ├── customTask_test.go │ │ ├── pipeline.go │ │ ├── pipeline_test.go │ │ ├── predefined_task.go │ │ ├── predefined_task_content.go │ │ ├── predefined_task_test.go │ │ ├── rbac.go │ │ ├── rbac_test.go │ │ ├── testdata │ │ ├── custom-task │ │ │ ├── cat-readme.yaml │ │ │ ├── cmd-args-task.yaml │ │ │ ├── complete-task.yaml │ │ │ ├── env-task.yaml │ │ │ ├── minimal-task.yaml │ │ │ └── resource-task.yaml │ │ ├── pipeline │ │ │ ├── comprehensive.yaml │ │ │ └── readme-test.yaml │ │ ├── predefined-task │ │ │ ├── build-and-push-image-custom.yaml │ │ │ ├── build-and-push-image-default.yaml │ │ │ ├── git-clone.yaml │ │ │ ├── go-lint-advanced-config.yaml │ │ │ ├── go-lint-custom-value.yaml │ │ │ ├── go-test-custom-value.yaml │ │ │ └── go-test-default.yaml │ │ ├── rbac │ │ │ ├── default-example.yaml │ │ │ └── with-owner.yaml │ │ └── trigger │ │ │ ├── default.yaml │ │ │ └── with-volume-claim.yaml │ │ ├── trigger.go │ │ ├── trigger_test.go │ │ └── util.go ├── plugin │ ├── plugin.go │ ├── plugin_test.go │ ├── render.go │ ├── render_test.go │ └── testdata │ │ ├── backup │ │ ├── custom-values-obs.yaml │ │ ├── custom-values-s3.yaml │ │ └── default.yaml │ │ ├── distributedstorage │ │ ├── ceph-cluster-default.yaml │ │ ├── ceph-cluster-handle.yaml │ │ └── default.yaml │ │ ├── grafana │ │ ├── default.yaml │ │ └── with-datasource.yaml │ │ ├── kyverno-policies │ │ └── default.yaml │ │ ├── kyverno │ │ └── default.yaml │ │ ├── prometheus │ │ ├── default.yaml │ │ └── with-values.yaml │ │ ├── rollout │ │ ├── default.yaml │ │ └── testloader-default.yaml │ │ ├── sm-broker │ │ └── default.yaml │ │ ├── sm-operator │ │ └── default.yaml │ │ └── thanos │ │ ├── custom-values.yaml │ │ └── default.yaml └── util.go ├── generic ├── base.go └── options.go ├── infra ├── aws │ ├── aws_pod_identity.go │ ├── aws_pod_identity_test.go │ ├── bucket │ │ ├── aws_test.go │ │ ├── s3.go │ │ └── s3_test.go │ ├── cloudformation │ │ ├── template.go │ │ └── template_test.go │ ├── provider.go │ └── util.go ├── openid │ ├── cert.go │ ├── config.go │ └── discovery.json.tpl ├── plugin │ ├── plugin.go │ ├── plugin.yaml.tpl │ ├── plugin_test.go │ └── testdata │ │ ├── aws-cni-calico.yaml │ │ ├── aws-cni-custom.yaml │ │ ├── aws-cni-custom.yaml.tpl │ │ └── cluster │ │ └── cni-extra.yaml ├── provider │ └── provider.go ├── scope │ ├── cluster.go │ └── cluster_test.go ├── service │ └── pod_identity.go ├── template │ ├── aws.go │ ├── aws_test.go │ └── testdata │ │ ├── capa-quickstart.yaml │ │ ├── enable-podidentity.yaml │ │ ├── with-volumes.yaml │ │ └── without-sshkey.yaml └── util │ ├── util.go │ └── util_test.go ├── istiocert ├── cert.go ├── plugged.go └── selfsigned.go ├── moreos ├── moreos.go ├── proc.go └── proc_windows.go ├── pipeline └── execution │ ├── list │ ├── list.go │ └── list_test.go │ └── logs │ └── logs.go ├── plugin ├── argocd │ └── plugin.go ├── istio │ ├── install.go │ ├── plugin.go │ ├── precheck.go │ ├── testdata │ │ ├── eastwest.yaml │ │ └── istiosystem-overridepolicy.yaml │ ├── util.go │ └── util_test.go ├── join │ ├── kubeedge │ │ └── kubeedge.go │ └── plugin.go ├── karmada │ └── plugin.go ├── kubeedge │ ├── plugin.go │ └── util.go ├── pixie │ └── vizier │ │ └── plugin.go ├── prometheus │ ├── plugin.go │ ├── testdata │ │ └── prometheus-additional.yaml │ ├── util.go │ └── util_test.go ├── submariner │ ├── install.go │ └── plugin.go ├── thanos │ ├── plugin.go │ ├── testdata │ │ └── external_labels_overridepolicy.yaml │ ├── thanos.go │ └── thanos_test.go └── volcano │ └── plugin.go ├── tool ├── list.go └── list_test.go ├── typemeta └── typemeta.go ├── util ├── cluster.go ├── cmd.go ├── download.go ├── exec.go ├── kube.go ├── policy.go ├── policy_test.go ├── testdata │ ├── istio-operator-cpp.yaml │ ├── istio-operator-pp.yaml │ ├── istio-operator.yaml │ ├── volcano-cpp.yaml │ ├── volcano-pp.yaml │ └── volcano.yaml ├── untar.go └── url.go ├── version ├── types.go └── version.go └── webhooks ├── application_webhook.go ├── application_webhook_test.go ├── attachedcluster_webhook.go ├── attachedcluster_webhook_test.go ├── cluster_webhook.go ├── cluster_webhook_test.go ├── customcluster_webhook.go ├── customcluster_webhook_test.go ├── custommachine_webhook.go ├── custommachine_webhook_test.go ├── testdata ├── application │ ├── invalid-fleet1.yaml │ ├── invalid-fleet2.yaml │ └── miss-default-and-policy-fleet.yaml ├── attachedcluster │ ├── invalid-kubeconfig-name.yaml │ └── miss-kubeconfig-key.yaml ├── cluster │ ├── aws-master-max-volume-exceed.yaml │ ├── aws-miss-region.yaml │ ├── aws-worker-max-volume-exceed.yaml │ ├── duplicate-additional-resource.yaml │ ├── invalid-additional-resource.yaml │ ├── invalid-pod-cidr.yaml │ ├── invalid-service-cidr.yaml │ ├── invalid-version.yaml │ ├── invalid-vpc-cidr.yaml │ ├── miss-infra-type.yaml │ ├── miss-secret.yaml │ └── miss-version.yaml ├── customcluster │ ├── invalid-address.yaml │ ├── invalid-cni-type.yaml │ ├── invalid-machineref-name.yaml │ ├── invalid-machineref-namespace.yaml │ ├── miss-cni-type.yaml │ ├── miss-machineref-all-value.yaml │ └── miss-machineref-name.yaml └── custommachine │ ├── invalid-master-nums.yaml │ ├── invalid-master-public-ip.yaml │ ├── invalid-node-private-ip.yaml │ ├── miss-master.yaml │ └── miss-node.yaml └── validation_utils.go /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.codespellrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/distributors-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/ISSUE_TEMPLATE/distributors-application.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/flaking-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/ISSUE_TEMPLATE/flaking-test.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/good-first.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/ISSUE_TEMPLATE/good-first.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/membership-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/ISSUE_TEMPLATE/membership-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/code-spell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/workflows/code-spell.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/workflows/e2e.yaml -------------------------------------------------------------------------------- /.github/workflows/fossa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/workflows/fossa.yaml -------------------------------------------------------------------------------- /.github/workflows/release-charts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/workflows/release-charts.yaml -------------------------------------------------------------------------------- /.github/workflows/release-image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/workflows/release-image.yaml -------------------------------------------------------------------------------- /.github/workflows/release-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.github/workflows/release-master.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.tools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/Makefile.tools.mk -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/NOTICE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/README.md -------------------------------------------------------------------------------- /ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/ROADMAP.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cmd/cluster-operator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/Dockerfile -------------------------------------------------------------------------------- /cmd/cluster-operator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/README.md -------------------------------------------------------------------------------- /cmd/cluster-operator/attachedcluster/attachedcluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/attachedcluster/attachedcluster.go -------------------------------------------------------------------------------- /cmd/cluster-operator/aws/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/aws/aws.go -------------------------------------------------------------------------------- /cmd/cluster-operator/capi/capi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/capi/capi.go -------------------------------------------------------------------------------- /cmd/cluster-operator/customcluster/customcluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/customcluster/customcluster.go -------------------------------------------------------------------------------- /cmd/cluster-operator/infra/infra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/infra/infra.go -------------------------------------------------------------------------------- /cmd/cluster-operator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/main.go -------------------------------------------------------------------------------- /cmd/cluster-operator/options/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/options/aws.go -------------------------------------------------------------------------------- /cmd/cluster-operator/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/options/options.go -------------------------------------------------------------------------------- /cmd/cluster-operator/scheme/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/scheme/aws.go -------------------------------------------------------------------------------- /cmd/cluster-operator/scheme/capi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/scheme/capi.go -------------------------------------------------------------------------------- /cmd/cluster-operator/scheme/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/cluster-operator/scheme/scheme.go -------------------------------------------------------------------------------- /cmd/crd-gen-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/crd-gen-tool/README.md -------------------------------------------------------------------------------- /cmd/crd-gen-tool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/crd-gen-tool/main.go -------------------------------------------------------------------------------- /cmd/fleet-manager/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/Dockerfile -------------------------------------------------------------------------------- /cmd/fleet-manager/application/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/application/application.go -------------------------------------------------------------------------------- /cmd/fleet-manager/backup/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/backup/backup.go -------------------------------------------------------------------------------- /cmd/fleet-manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/main.go -------------------------------------------------------------------------------- /cmd/fleet-manager/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/options/options.go -------------------------------------------------------------------------------- /cmd/fleet-manager/pipeline/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/pipeline/pipeline.go -------------------------------------------------------------------------------- /cmd/fleet-manager/scheme/flux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/scheme/flux.go -------------------------------------------------------------------------------- /cmd/fleet-manager/scheme/scheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/fleet-manager/scheme/scheme.go -------------------------------------------------------------------------------- /cmd/kurator/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/app.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/argocd/argocd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/argocd/argocd.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/install.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/istio/istio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/istio/istio.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/karmada/karmada.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/karmada/karmada.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/kubeedge/kubeedge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/kubeedge/kubeedge.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/pixie/pixie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/pixie/pixie.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/pixie/vizier/vizier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/pixie/vizier/vizier.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/prometheus/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/prometheus/prometheus.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/submariner/submariner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/submariner/submariner.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/thanos/thanos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/thanos/thanos.go -------------------------------------------------------------------------------- /cmd/kurator/app/install/volcano/volcano.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/install/volcano/volcano.go -------------------------------------------------------------------------------- /cmd/kurator/app/join/join.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/join/join.go -------------------------------------------------------------------------------- /cmd/kurator/app/join/karmada/karmada.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/join/karmada/karmada.go -------------------------------------------------------------------------------- /cmd/kurator/app/join/kubeedge/kubeedge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/join/kubeedge/kubeedge.go -------------------------------------------------------------------------------- /cmd/kurator/app/pipeline/execution/execution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/pipeline/execution/execution.go -------------------------------------------------------------------------------- /cmd/kurator/app/pipeline/execution/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/pipeline/execution/list/list.go -------------------------------------------------------------------------------- /cmd/kurator/app/pipeline/execution/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/pipeline/execution/logs/logs.go -------------------------------------------------------------------------------- /cmd/kurator/app/pipeline/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/pipeline/pipeline.go -------------------------------------------------------------------------------- /cmd/kurator/app/tool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/tool/tool.go -------------------------------------------------------------------------------- /cmd/kurator/app/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/app/version/version.go -------------------------------------------------------------------------------- /cmd/kurator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/cmd/kurator/main.go -------------------------------------------------------------------------------- /common/config/.cr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/common/config/.cr.yaml -------------------------------------------------------------------------------- /common/config/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/common/config/.golangci.yml -------------------------------------------------------------------------------- /common/config/license-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/common/config/license-lint.yaml -------------------------------------------------------------------------------- /common/config/mdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/common/config/mdl.json -------------------------------------------------------------------------------- /community/compliance/allowed-licenses-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/compliance/allowed-licenses-list.md -------------------------------------------------------------------------------- /community/compliance/dep-approvers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/compliance/dep-approvers.md -------------------------------------------------------------------------------- /community/compliance/dependence-compliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/compliance/dependence-compliance.md -------------------------------------------------------------------------------- /community/membership/community-membership.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/membership/community-membership.md -------------------------------------------------------------------------------- /community/security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/security/README.md -------------------------------------------------------------------------------- /community/security/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/security/SECURITY.md -------------------------------------------------------------------------------- /community/security/private-distributors-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/security/private-distributors-list.md -------------------------------------------------------------------------------- /community/security/report-a-vulnerability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/security/report-a-vulnerability.md -------------------------------------------------------------------------------- /community/security/security-groups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/security/security-groups.md -------------------------------------------------------------------------------- /community/security/security-release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/community/security/security-release-process.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/assets/icons/logo.svg -------------------------------------------------------------------------------- /docs/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/assets/scss/_nav.scss -------------------------------------------------------------------------------- /docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/config.toml -------------------------------------------------------------------------------- /docs/content/en/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/_index.html -------------------------------------------------------------------------------- /docs/content/en/blog/0.2.0_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/0.2.0_release.md -------------------------------------------------------------------------------- /docs/content/en/blog/0.3.0_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/0.3.0_release.md -------------------------------------------------------------------------------- /docs/content/en/blog/0.4.0_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/0.4.0_release.md -------------------------------------------------------------------------------- /docs/content/en/blog/0.5.0_release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/0.5.0_release.md -------------------------------------------------------------------------------- /docs/content/en/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/_index.md -------------------------------------------------------------------------------- /docs/content/en/blog/image/cluster-operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/image/cluster-operator.png -------------------------------------------------------------------------------- /docs/content/en/blog/image/clusterapi-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/image/clusterapi-aws.png -------------------------------------------------------------------------------- /docs/content/en/blog/image/customcluster-controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/image/customcluster-controller.svg -------------------------------------------------------------------------------- /docs/content/en/blog/image/fleet-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/image/fleet-arch.png -------------------------------------------------------------------------------- /docs/content/en/blog/image/kubespray-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/image/kubespray-arch.svg -------------------------------------------------------------------------------- /docs/content/en/blog/image/on-premise-vip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/image/on-premise-vip.png -------------------------------------------------------------------------------- /docs/content/en/blog/kurator_or_kubespray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/blog/kurator_or_kubespray.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/build-from-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/build-from-source.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/cleanup.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/index.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/install-cluster-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/install-cluster-operator.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/install-fleet-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/install-fleet-manager.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/prepare-aws.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/prepare-aws.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/prerequisites-karmada.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/prerequisites-karmada.md -------------------------------------------------------------------------------- /docs/content/en/boilerplates/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/boilerplates/prerequisites.md -------------------------------------------------------------------------------- /docs/content/en/community/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/community/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/argocd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/argocd.md -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/app-source.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/app-source.PNG -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/clusters.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/clusters.PNG -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/login.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/login.PNG -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/new-app.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/new-app.PNG -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/pixie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/pixie.png -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/sync-output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/sync-output.PNG -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/sync.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/sync.PNG -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/image/thanos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/image/thanos.png -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/istio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/istio.md -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/karmada.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/karmada.md -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/pixie-vizier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/pixie-vizier.md -------------------------------------------------------------------------------- /docs/content/en/docs/Integrations/thanos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/Integrations/thanos.md -------------------------------------------------------------------------------- /docs/content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/cluster-operator/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/cluster-operator/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/cluster-operator/aws-irsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/cluster-operator/aws-irsa.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/application.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/backup/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/backup/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/backup/backup-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/backup/backup-plugin.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/backup/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/backup/backup.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/backup/image/migrate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/backup/image/migrate.svg -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/backup/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/backup/migrate.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/backup/restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/backup/restore.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/create-fleet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/create-fleet.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/image/fleet-manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/image/fleet-manager.svg -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/image/fleet-metric.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/image/fleet-metric.svg -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/image/fleet-policy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/image/fleet-policy.svg -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/metric-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/metric-plugin.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/policy.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/rollout/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/rollout/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/rollout/abtest/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/rollout/abtest/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/rollout/canary/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/rollout/canary/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/fleet-manager/submariner-plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/fleet-manager/submariner-plugin.md -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/chain-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/chain-security.md -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/image/chain-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/image/chain-security.png -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/image/pipeline-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/image/pipeline-arch.svg -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/image/use-pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/image/use-pipeline.svg -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/image/webhook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/image/webhook.png -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/operation.md -------------------------------------------------------------------------------- /docs/content/en/docs/pipeline/setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/pipeline/setting.md -------------------------------------------------------------------------------- /docs/content/en/docs/references/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/references/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/references/app-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/references/app-api.md -------------------------------------------------------------------------------- /docs/content/en/docs/references/backup-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/references/backup-api.md -------------------------------------------------------------------------------- /docs/content/en/docs/references/cluster-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/references/cluster-api.md -------------------------------------------------------------------------------- /docs/content/en/docs/references/fleet-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/references/fleet-api.md -------------------------------------------------------------------------------- /docs/content/en/docs/references/infra-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/references/infra-api.md -------------------------------------------------------------------------------- /docs/content/en/docs/references/pipeline-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/references/pipeline-api.md -------------------------------------------------------------------------------- /docs/content/en/docs/setup/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/setup/_index.md -------------------------------------------------------------------------------- /docs/content/en/docs/setup/insatll-kurator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/setup/insatll-kurator.md -------------------------------------------------------------------------------- /docs/content/en/docs/setup/install-cluster-operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/setup/install-cluster-operator.md -------------------------------------------------------------------------------- /docs/content/en/docs/setup/install-fleet-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/setup/install-fleet-manager.md -------------------------------------------------------------------------------- /docs/content/en/docs/setup/install-minio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/docs/setup/install-minio.md -------------------------------------------------------------------------------- /docs/content/en/references/apps_v1alpha1_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/references/apps_v1alpha1_types.html -------------------------------------------------------------------------------- /docs/content/en/references/backups_v1alpha1_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/references/backups_v1alpha1_types.html -------------------------------------------------------------------------------- /docs/content/en/references/cluster_v1alpha1_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/references/cluster_v1alpha1_types.html -------------------------------------------------------------------------------- /docs/content/en/references/fleet_v1alpha1_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/references/fleet_v1alpha1_types.html -------------------------------------------------------------------------------- /docs/content/en/references/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/references/index.md -------------------------------------------------------------------------------- /docs/content/en/references/infra_v1alpha1_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/references/infra_v1alpha1_types.html -------------------------------------------------------------------------------- /docs/content/en/references/pipeline_v1alpha1_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/references/pipeline_v1alpha1_types.html -------------------------------------------------------------------------------- /docs/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/content/en/search.md -------------------------------------------------------------------------------- /docs/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/go.mod -------------------------------------------------------------------------------- /docs/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/go.sum -------------------------------------------------------------------------------- /docs/images/kurator-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/images/kurator-arch.svg -------------------------------------------------------------------------------- /docs/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/boilerplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/layouts/shortcodes/boilerplate.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/layouts/shortcodes/image.html -------------------------------------------------------------------------------- /docs/layouts/shortcodes/kurator-version.html: -------------------------------------------------------------------------------- 1 | {{ os.Getenv "HUGO_KURATOR_VERSION" }} -------------------------------------------------------------------------------- /docs/layouts/shortcodes/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/layouts/shortcodes/reference.html -------------------------------------------------------------------------------- /docs/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/netlify.toml -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/proposals/backup/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/backup/backup.md -------------------------------------------------------------------------------- /docs/proposals/backup/image/backup-struct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/backup/image/backup-struct.svg -------------------------------------------------------------------------------- /docs/proposals/backup/image/backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/backup/image/backup.svg -------------------------------------------------------------------------------- /docs/proposals/backup/image/migrate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/backup/image/migrate.svg -------------------------------------------------------------------------------- /docs/proposals/distributedstorage/distributedstorage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/distributedstorage/distributedstorage.md -------------------------------------------------------------------------------- /docs/proposals/pipeline/image/pipelinerun-example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/pipeline/image/pipelinerun-example.svg -------------------------------------------------------------------------------- /docs/proposals/pipeline/image/trigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/pipeline/image/trigger.svg -------------------------------------------------------------------------------- /docs/proposals/pipeline/image/use-pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/pipeline/image/use-pipeline.svg -------------------------------------------------------------------------------- /docs/proposals/pipeline/pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/pipeline/pipeline.md -------------------------------------------------------------------------------- /docs/proposals/proposal-template/proposal-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/proposal-template/proposal-template.md -------------------------------------------------------------------------------- /docs/proposals/rollout/Add_Gateway_Plugin_Support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/rollout/Add_Gateway_Plugin_Support.md -------------------------------------------------------------------------------- /docs/proposals/rollout/rollout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/rollout/rollout.md -------------------------------------------------------------------------------- /docs/proposals/submariner/submariner_as_fleet_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/docs/proposals/submariner/submariner_as_fleet_plugin.md -------------------------------------------------------------------------------- /e2e/fleet_attachedcluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/fleet_attachedcluster_test.go -------------------------------------------------------------------------------- /e2e/framework/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/framework/cluster.go -------------------------------------------------------------------------------- /e2e/resources/attachedcluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/resources/attachedcluster.go -------------------------------------------------------------------------------- /e2e/resources/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/resources/constant.go -------------------------------------------------------------------------------- /e2e/resources/fleet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/resources/fleet.go -------------------------------------------------------------------------------- /e2e/resources/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/resources/namespace.go -------------------------------------------------------------------------------- /e2e/resources/secret.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/resources/secret.go -------------------------------------------------------------------------------- /e2e/resources/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/resources/util.go -------------------------------------------------------------------------------- /e2e/suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/suite.go -------------------------------------------------------------------------------- /e2e/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/e2e/suite_test.go -------------------------------------------------------------------------------- /examples/application/cluster-selector-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/application/cluster-selector-demo.yaml -------------------------------------------------------------------------------- /examples/application/common/attachedcluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/application/common/attachedcluster.yaml -------------------------------------------------------------------------------- /examples/application/common/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/application/common/fleet.yaml -------------------------------------------------------------------------------- /examples/application/gitrepo-helmrelease-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/application/gitrepo-helmrelease-demo.yaml -------------------------------------------------------------------------------- /examples/application/gitrepo-kustomization-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/application/gitrepo-kustomization-demo.yaml -------------------------------------------------------------------------------- /examples/application/helmrepo-helmrelease-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/application/helmrepo-helmrelease-demo.yaml -------------------------------------------------------------------------------- /examples/aws-pod-identity/pod-indentity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/aws-pod-identity/pod-indentity.yaml -------------------------------------------------------------------------------- /examples/backup/app-backup-demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/app-backup-demo.yaml -------------------------------------------------------------------------------- /examples/backup/backup-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/backup-minimal.yaml -------------------------------------------------------------------------------- /examples/backup/backup-schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/backup-schedule.yaml -------------------------------------------------------------------------------- /examples/backup/backup-select-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/backup-select-labels.yaml -------------------------------------------------------------------------------- /examples/backup/busybox-demo/busybox.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/busybox-demo/busybox.yaml -------------------------------------------------------------------------------- /examples/backup/migrate-select-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/migrate-select-labels.yaml -------------------------------------------------------------------------------- /examples/backup/restore-minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/restore-minimal.yaml -------------------------------------------------------------------------------- /examples/backup/restore-schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/backup/restore-schedule.yaml -------------------------------------------------------------------------------- /examples/cluster/additionalresources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/cluster/additionalresources.yaml -------------------------------------------------------------------------------- /examples/cluster/enable-pod-identity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/cluster/enable-pod-identity.yaml -------------------------------------------------------------------------------- /examples/cluster/quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/cluster/quickstart.yaml -------------------------------------------------------------------------------- /examples/fleet/fleet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/fleet/fleet.yaml -------------------------------------------------------------------------------- /examples/fleet/metric/metric-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/fleet/metric/metric-plugin.yaml -------------------------------------------------------------------------------- /examples/fleet/metric/monitor-demo/avalanche.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/fleet/metric/monitor-demo/avalanche.yaml -------------------------------------------------------------------------------- /examples/fleet/network/submariner-plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/fleet/network/submariner-plugin.yaml -------------------------------------------------------------------------------- /examples/fleet/policy/badpod-demo/badpod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/fleet/policy/badpod-demo/badpod.yaml -------------------------------------------------------------------------------- /examples/fleet/policy/kyverno.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/fleet/policy/kyverno.yaml -------------------------------------------------------------------------------- /examples/fleet/quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/fleet/quickstart.yaml -------------------------------------------------------------------------------- /examples/infra/customcluster/cc-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/infra/customcluster/cc-cluster.yaml -------------------------------------------------------------------------------- /examples/infra/customcluster/cc-customcluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/infra/customcluster/cc-customcluster.yaml -------------------------------------------------------------------------------- /examples/infra/customcluster/cc-custommachine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/infra/customcluster/cc-custommachine.yaml -------------------------------------------------------------------------------- /examples/infra/customcluster/cc-kcp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/infra/customcluster/cc-kcp.yaml -------------------------------------------------------------------------------- /examples/rollout/ab-testing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/ab-testing.yaml -------------------------------------------------------------------------------- /examples/rollout/ab-testingNginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/ab-testingNginx.yaml -------------------------------------------------------------------------------- /examples/rollout/blue_green.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/blue_green.yaml -------------------------------------------------------------------------------- /examples/rollout/blue_greenNginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/blue_greenNginx.yaml -------------------------------------------------------------------------------- /examples/rollout/canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/canary.yaml -------------------------------------------------------------------------------- /examples/rollout/canaryKuma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/canaryKuma.yaml -------------------------------------------------------------------------------- /examples/rollout/canaryNginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/canaryNginx.yaml -------------------------------------------------------------------------------- /examples/rollout/canaryWithCustomMetric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/examples/rollout/canaryWithCustomMetric.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/OWNERS -------------------------------------------------------------------------------- /hack/api-docs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/api-docs/config.json -------------------------------------------------------------------------------- /hack/api-docs/template/members.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/api-docs/template/members.tpl -------------------------------------------------------------------------------- /hack/api-docs/template/pkg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/api-docs/template/pkg.tpl -------------------------------------------------------------------------------- /hack/api-docs/template/type.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/api-docs/template/type.tpl -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/boilerplate/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/boilerplate/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/build-thanos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/build-thanos.sh -------------------------------------------------------------------------------- /hack/crd-ref-docs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/crd-ref-docs/config.yaml -------------------------------------------------------------------------------- /hack/e2e-test/build-clusters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/e2e-test/build-clusters.sh -------------------------------------------------------------------------------- /hack/e2e-test/install-kurator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/e2e-test/install-kurator.sh -------------------------------------------------------------------------------- /hack/e2e-test/run-e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/e2e-test/run-e2e.sh -------------------------------------------------------------------------------- /hack/fix_copyright_banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/fix_copyright_banner.sh -------------------------------------------------------------------------------- /hack/gen-api-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/gen-api-doc.sh -------------------------------------------------------------------------------- /hack/gen-chart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/gen-chart.sh -------------------------------------------------------------------------------- /hack/gen-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/gen-check.sh -------------------------------------------------------------------------------- /hack/gen-prom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/gen-prom.sh -------------------------------------------------------------------------------- /hack/gen-thanos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/gen-thanos.sh -------------------------------------------------------------------------------- /hack/golangci-lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/golangci-lint.sh -------------------------------------------------------------------------------- /hack/image-sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/image-sign.sh -------------------------------------------------------------------------------- /hack/kind-configs-with-worker/host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/kind-configs-with-worker/host.yaml -------------------------------------------------------------------------------- /hack/kind-configs-with-worker/member1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/kind-configs-with-worker/member1.yaml -------------------------------------------------------------------------------- /hack/kind-configs-with-worker/member2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/kind-configs-with-worker/member2.yaml -------------------------------------------------------------------------------- /hack/kind-configs/host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/kind-configs/host.yaml -------------------------------------------------------------------------------- /hack/kind-configs/member1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/kind-configs/member1.yaml -------------------------------------------------------------------------------- /hack/kind-configs/member2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/kind-configs/member2.yaml -------------------------------------------------------------------------------- /hack/licenses-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/licenses-check.sh -------------------------------------------------------------------------------- /hack/lint_copyright_banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/lint_copyright_banner.sh -------------------------------------------------------------------------------- /hack/local-dev-down.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/local-dev-down.sh -------------------------------------------------------------------------------- /hack/local-dev-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/local-dev-setup.sh -------------------------------------------------------------------------------- /hack/local-docsite-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/local-docsite-build.sh -------------------------------------------------------------------------------- /hack/local-docsite-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/local-docsite-up.sh -------------------------------------------------------------------------------- /hack/local-setup-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/local-setup-cluster.sh -------------------------------------------------------------------------------- /hack/release-artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/release-artifacts.sh -------------------------------------------------------------------------------- /hack/sync-crds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/sync-crds.sh -------------------------------------------------------------------------------- /hack/tool/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/tool/tool.go -------------------------------------------------------------------------------- /hack/update-codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/update-codegen.sh -------------------------------------------------------------------------------- /hack/update-copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/update-copyright.sh -------------------------------------------------------------------------------- /hack/update-crdgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/update-crdgen.sh -------------------------------------------------------------------------------- /hack/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/hack/util.sh -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/compute/metadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/cloud.google.com/go/compute/metadata/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/cloud.google.com/go/logging/LICENSE -------------------------------------------------------------------------------- /licenses/cloud.google.com/go/longrunning/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/cloud.google.com/go/longrunning/LICENSE -------------------------------------------------------------------------------- /licenses/contrib.go.opencensus.io/exporter/ocagent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/contrib.go.opencensus.io/exporter/ocagent/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/BurntSushi/toml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/BurntSushi/toml/COPYING -------------------------------------------------------------------------------- /licenses/github.com/BurntSushi/toml/cmd/tomlv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/BurntSushi/toml/cmd/tomlv/COPYING -------------------------------------------------------------------------------- /licenses/github.com/MakeNowJust/heredoc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/MakeNowJust/heredoc/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/Masterminds/goutils/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/Masterminds/goutils/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/Masterminds/semver/v3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/Masterminds/semver/v3/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/Masterminds/sprig/v3/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/Masterminds/sprig/v3/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/agiledragon/gomonkey/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/agiledragon/gomonkey/v2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/ajeddeloh/go-json/NONE: -------------------------------------------------------------------------------- 1 | NO LICENSE FOUND 2 | -------------------------------------------------------------------------------- /licenses/github.com/alecthomas/units/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/alecthomas/units/COPYING -------------------------------------------------------------------------------- /licenses/github.com/apparentlymart/go-cidr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/apparentlymart/go-cidr/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/asaskevich/govalidator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/asaskevich/govalidator/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/aws/amazon-vpc-cni-k8s/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/aws/amazon-vpc-cni-k8s/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/aws/aws-sdk-go/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/aws/aws-sdk-go/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/awslabs/goformation/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/awslabs/goformation/v4/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/beorn7/perks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/beorn7/perks/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/blang/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/blang/semver/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/blang/semver/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/blang/semver/v4/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/blendle/zapdriver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/blendle/zapdriver/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cenkalti/backoff/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/cenkalti/backoff/v4/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cert-manager/cert-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/cert-manager/cert-manager/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cert-manager/cert-manager/logo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/cert-manager/cert-manager/logo/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cespare/xxhash/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/cespare/xxhash/v2/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/chai2010/gettext-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/chai2010/gettext-go/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cncf/xds/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/cncf/xds/go/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/coredns/caddy/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/coredns/caddy/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/coredns/corefile-migration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/coredns/corefile-migration/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/coreos/go-semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/coreos/go-semver/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/coreos/go-systemd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/coreos/go-systemd/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/coreos/go-systemd/v22/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/coreos/go-systemd/v22/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/cyphar/filepath-securejoin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/cyphar/filepath-securejoin/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/davecgh/go-spew/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/davecgh/go-spew/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/docker/distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/docker/distribution/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/emicklei/go-restful/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/emicklei/go-restful/v3/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/envoyproxy/go-control-plane/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/envoyproxy/go-control-plane/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/envoyproxy/protoc-gen-validate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/envoyproxy/protoc-gen-validate/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/evanphx/json-patch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/evanphx/json-patch/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/evanphx/json-patch/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/evanphx/json-patch/v5/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/exponent-io/jsonpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/exponent-io/jsonpath/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fatih/camelcase/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fatih/camelcase/LICENSE.md -------------------------------------------------------------------------------- /licenses/github.com/fatih/color/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fatih/color/LICENSE.md -------------------------------------------------------------------------------- /licenses/github.com/flatcar/ignition/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/flatcar/ignition/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/flagger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/flagger/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/flagger/charts/flagger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/flagger/charts/flagger/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/helm-controller/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/helm-controller/api/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/kustomize-controller/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/kustomize-controller/api/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/pkg/apis/acl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/pkg/apis/acl/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/pkg/apis/kustomize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/pkg/apis/kustomize/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/pkg/apis/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/pkg/apis/meta/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/pkg/runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/pkg/runtime/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fluxcd/source-controller/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fluxcd/source-controller/api/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/fvbommel/sortorder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/fvbommel/sortorder/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-errors/errors/NONE: -------------------------------------------------------------------------------- 1 | NO LICENSE FOUND 2 | -------------------------------------------------------------------------------- /licenses/github.com/go-kit/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-kit/log/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-kit/log/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-kit/log/term/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-logfmt/logfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-logfmt/logfmt/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-logr/logr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-logr/logr/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-logr/zapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-logr/zapr/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-openapi/jsonpointer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-openapi/jsonpointer/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-openapi/jsonreference/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-openapi/jsonreference/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/gobuffalo/flect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/gobuffalo/flect/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/gobwas/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/gobwas/glob/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/gogo/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/gogo/protobuf/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/golang-jwt/jwt/v5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/golang-jwt/jwt/v5/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/golang/groupcache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/golang/groupcache/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/btree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/btree/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/cel-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/cel-go/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/gnostic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/gnostic/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/go-cmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/go-cmp/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/gofuzz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/gofuzz/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/google/s2a-go/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/s2a-go/LICENSE.md -------------------------------------------------------------------------------- /licenses/github.com/google/shlex/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/shlex/COPYING -------------------------------------------------------------------------------- /licenses/github.com/google/uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/google/uuid/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/googleapis/gax-go/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/googleapis/gax-go/v2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/gosuri/uitable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/gosuri/uitable/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/gosuri/uitable/util/wordwrap/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/gosuri/uitable/util/wordwrap/LICENSE.md -------------------------------------------------------------------------------- /licenses/github.com/grafana/regexp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/grafana/regexp/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/gregjones/httpcache/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/gregjones/httpcache/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/hashicorp/errwrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/hashicorp/errwrap/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/hashicorp/go-multierror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/hashicorp/go-multierror/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/hashicorp/go-version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/hashicorp/go-version/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/huandu/xstrings/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/huandu/xstrings/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/jmespath/go-jmespath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/jmespath/go-jmespath/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/jonboulle/clockwork/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/jonboulle/clockwork/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/josharian/intern/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/josharian/intern/license.md -------------------------------------------------------------------------------- /licenses/github.com/jpillora/backoff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/jpillora/backoff/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/json-iterator/go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/json-iterator/go/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/karmada-io/karmada/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/karmada-io/karmada/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/kr/fs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/kr/fs/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/kr/pretty/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/kr/pretty/License -------------------------------------------------------------------------------- /licenses/github.com/kr/text/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/kr/text/License -------------------------------------------------------------------------------- /licenses/github.com/kylelemons/godebug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/kylelemons/godebug/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/lestrrat-go/backoff/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/lestrrat-go/backoff/v2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/lestrrat-go/blackmagic/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/lestrrat-go/blackmagic/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/lestrrat-go/httpcc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/lestrrat-go/httpcc/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/lestrrat-go/iter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/lestrrat-go/iter/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/lestrrat-go/jwx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/lestrrat-go/jwx/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/lestrrat-go/option/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/lestrrat-go/option/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/liggitt/tabwriter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/liggitt/tabwriter/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mattn/go-colorable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mattn/go-colorable/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mattn/go-isatty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mattn/go-isatty/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mattn/go-runewidth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mattn/go-runewidth/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mitchellh/copystructure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mitchellh/copystructure/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mitchellh/go-homedir/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mitchellh/go-homedir/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mitchellh/go-wordwrap/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mitchellh/go-wordwrap/LICENSE.md -------------------------------------------------------------------------------- /licenses/github.com/mitchellh/reflectwalk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mitchellh/reflectwalk/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/moby/spdystream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/moby/spdystream/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/moby/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/moby/term/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/modern-go/concurrent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/modern-go/concurrent/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/modern-go/reflect2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/modern-go/reflect2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/monochromegane/go-gitignore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/monochromegane/go-gitignore/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/munnerz/goautoneg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/munnerz/goautoneg/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/mwitkow/go-conntrack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/mwitkow/go-conntrack/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/onsi/ginkgo/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/onsi/ginkgo/v2/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/onsi/gomega/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/onsi/gomega/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/opencontainers/go-digest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/opencontainers/go-digest/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/peterbourgon/diskv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/peterbourgon/diskv/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/pkg/browser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/pkg/browser/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/pkg/sftp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/pkg/sftp/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/pmezard/go-difflib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/pmezard/go-difflib/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/prometheus/client_golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/prometheus/client_golang/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/prometheus/client_model/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/prometheus/client_model/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/prometheus/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/prometheus/common/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/prometheus/common/sigv4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/prometheus/common/sigv4/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/prometheus/procfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/prometheus/procfs/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/prometheus/prometheus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/prometheus/prometheus/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/prometheus/statsd_exporter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/prometheus/statsd_exporter/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/rivo/uniseg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/rivo/uniseg/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/robfig/cron/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/robfig/cron/v3/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/rogpeppe/go-internal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/rogpeppe/go-internal/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/russross/blackfriday/v2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/russross/blackfriday/v2/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/sanathkr/go-yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/sanathkr/go-yaml/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/sanathkr/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/sanathkr/yaml/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/shopspring/decimal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/shopspring/decimal/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/sirupsen/logrus/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/sirupsen/logrus/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/spf13/cast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/spf13/cast/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/spf13/cobra/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/spf13/cobra/LICENSE.txt -------------------------------------------------------------------------------- /licenses/github.com/spf13/pflag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/spf13/pflag/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/stoewer/go-strcase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/stoewer/go-strcase/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/stretchr/testify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/stretchr/testify/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/tektoncd/pipeline/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/tektoncd/pipeline/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/valyala/fastjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/valyala/fastjson/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/vincent-petithory/dataurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/vincent-petithory/dataurl/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/vmware-tanzu/velero/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/vmware-tanzu/velero/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/xeipuuv/gojsonpointer/NONE: -------------------------------------------------------------------------------- 1 | NO LICENSE FOUND 2 | -------------------------------------------------------------------------------- /licenses/github.com/xeipuuv/gojsonreference/NONE: -------------------------------------------------------------------------------- 1 | NO LICENSE FOUND 2 | -------------------------------------------------------------------------------- /licenses/github.com/xeipuuv/gojsonschema/NONE: -------------------------------------------------------------------------------- 1 | NO LICENSE FOUND 2 | -------------------------------------------------------------------------------- /licenses/github.com/xlab/treeprint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/xlab/treeprint/LICENSE -------------------------------------------------------------------------------- /licenses/github.com/yuin/gopher-lua/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/github.com/yuin/gopher-lua/LICENSE -------------------------------------------------------------------------------- /licenses/go.etcd.io/etcd/api/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.etcd.io/etcd/api/v3/LICENSE -------------------------------------------------------------------------------- /licenses/go.etcd.io/etcd/client/pkg/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.etcd.io/etcd/client/pkg/v3/LICENSE -------------------------------------------------------------------------------- /licenses/go.etcd.io/etcd/client/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.etcd.io/etcd/client/v3/LICENSE -------------------------------------------------------------------------------- /licenses/go.opencensus.io/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.opencensus.io/LICENSE -------------------------------------------------------------------------------- /licenses/go.opentelemetry.io/proto/otlp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.opentelemetry.io/proto/otlp/LICENSE -------------------------------------------------------------------------------- /licenses/go.starlark.net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.starlark.net/LICENSE -------------------------------------------------------------------------------- /licenses/go.uber.org/atomic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.uber.org/atomic/LICENSE.txt -------------------------------------------------------------------------------- /licenses/go.uber.org/multierr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.uber.org/multierr/LICENSE.txt -------------------------------------------------------------------------------- /licenses/go.uber.org/zap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go.uber.org/zap/LICENSE.txt -------------------------------------------------------------------------------- /licenses/go4.org/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/go4.org/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/exp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/exp/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/oauth2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/oauth2/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/sync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/sync/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/term/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/term/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /licenses/golang.org/x/time/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/golang.org/x/time/LICENSE -------------------------------------------------------------------------------- /licenses/gomodules.xyz/jsonpatch/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/gomodules.xyz/jsonpatch/v2/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/google.golang.org/api/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/genproto/googleapis/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/google.golang.org/genproto/googleapis/api/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/genproto/googleapis/rpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/google.golang.org/genproto/googleapis/rpc/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /licenses/google.golang.org/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/google.golang.org/protobuf/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/inf.v0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/gopkg.in/inf.v0/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/natefinch/lumberjack.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/gopkg.in/natefinch/lumberjack.v2/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/square/go-jose.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/gopkg.in/square/go-jose.v2/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/square/go-jose.v2/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/gopkg.in/square/go-jose.v2/json/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /licenses/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/helm.sh/helm/v3/LICENSE -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz.v1/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz.v2.reqs/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz_backslash/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz_with_bom/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chart/loader/testdata/frobnitz_with_dev_null/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-alias/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-no-requirements-yaml/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-with-all-in-requirements-yaml/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/dependent-chart-with-mixed-requirements-yaml/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/helm.sh/helm/v3/pkg/chartutil/testdata/frobnitz/LICENSE: -------------------------------------------------------------------------------- 1 | LICENSE placeholder. 2 | -------------------------------------------------------------------------------- /licenses/istio.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/istio.io/api/LICENSE -------------------------------------------------------------------------------- /licenses/istio.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/istio.io/client-go/LICENSE -------------------------------------------------------------------------------- /licenses/istio.io/istio/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/istio.io/istio/LICENSE -------------------------------------------------------------------------------- /licenses/istio.io/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/istio.io/pkg/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/api/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/apiextensions-apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/apiextensions-apiserver/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/apimachinery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/apimachinery/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/apiserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/apiserver/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/cli-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/cli-runtime/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/client-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/client-go/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/client-go/third_party/forked/golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/client-go/third_party/forked/golang/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/cluster-bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/cluster-bootstrap/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/component-base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/component-base/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/klog/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/klog/v2/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/kube-aggregator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/kube-aggregator/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/kube-openapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/kube-openapi/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/kube-openapi/pkg/validation/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/kube-openapi/pkg/validation/errors/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/kube-openapi/pkg/validation/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/kube-openapi/pkg/validation/spec/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/kube-openapi/pkg/validation/strfmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/kube-openapi/pkg/validation/strfmt/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/kubectl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/kubectl/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/utils/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/utils/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/utils/inotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/utils/inotify/LICENSE -------------------------------------------------------------------------------- /licenses/k8s.io/utils/third_party/forked/golang/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/k8s.io/utils/third_party/forked/golang/LICENSE -------------------------------------------------------------------------------- /licenses/knative.dev/pkg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/knative.dev/pkg/LICENSE -------------------------------------------------------------------------------- /licenses/knative.dev/pkg/third_party/mako/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/knative.dev/pkg/third_party/mako/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/cluster-api-provider-aws/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/cluster-api-provider-aws/v2/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/cluster-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/cluster-api/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/cluster-api/logos/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/cluster-api/logos/LICENSE.md -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/controller-runtime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/controller-runtime/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/gateway-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/gateway-api/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/json/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/json/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/kustomize/api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/kustomize/api/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/kustomize/kyaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/kustomize/kyaml/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/mcs-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/mcs-api/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/structured-merge-diff/v4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/structured-merge-diff/v4/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/yaml/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/yaml/goyaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/yaml/goyaml.v2/LICENSE -------------------------------------------------------------------------------- /licenses/sigs.k8s.io/yaml/goyaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/licenses/sigs.k8s.io/yaml/goyaml.v3/LICENSE -------------------------------------------------------------------------------- /manifests/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/OWNERS -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/Chart.yaml -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/templates/_helpers.tpl -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/templates/aws-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/templates/aws-secret.yaml -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/templates/deployment.yaml -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/templates/rbac.yaml -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/templates/service.yaml -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/templates/webhooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/templates/webhooks.yaml -------------------------------------------------------------------------------- /manifests/charts/cluster-operator/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/cluster-operator/values.yaml -------------------------------------------------------------------------------- /manifests/charts/fleet-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/fleet-manager/Chart.yaml -------------------------------------------------------------------------------- /manifests/charts/fleet-manager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/fleet-manager/templates/deployment.yaml -------------------------------------------------------------------------------- /manifests/charts/fleet-manager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/fleet-manager/templates/rbac.yaml -------------------------------------------------------------------------------- /manifests/charts/fleet-manager/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/fleet-manager/templates/service.yaml -------------------------------------------------------------------------------- /manifests/charts/fleet-manager/templates/webhooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/fleet-manager/templates/webhooks.yaml -------------------------------------------------------------------------------- /manifests/charts/fleet-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/charts/fleet-manager/values.yaml -------------------------------------------------------------------------------- /manifests/config/crds/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/config/crds/kustomization.yml -------------------------------------------------------------------------------- /manifests/jsonnet/prometheus/prometheus.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/jsonnet/prometheus/prometheus.jsonnet -------------------------------------------------------------------------------- /manifests/jsonnet/prometheus/thanos.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/jsonnet/prometheus/thanos.jsonnet -------------------------------------------------------------------------------- /manifests/jsonnet/thanos/thanos.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/jsonnet/thanos/thanos.jsonnet -------------------------------------------------------------------------------- /manifests/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/manifests.go -------------------------------------------------------------------------------- /manifests/profiles/components.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/components.yaml -------------------------------------------------------------------------------- /manifests/profiles/eastwest.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/eastwest.tmpl.yaml -------------------------------------------------------------------------------- /manifests/profiles/expose-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/expose-services.yaml -------------------------------------------------------------------------------- /manifests/profiles/infra/capitpls/aws.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/infra/capitpls/aws.yaml.tpl -------------------------------------------------------------------------------- /manifests/profiles/infra/plugins/aws-cni-calico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/infra/plugins/aws-cni-calico.yaml -------------------------------------------------------------------------------- /manifests/profiles/istio-namespace-override.tmpl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/istio-namespace-override.tmpl.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom-thanos/prometheus-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom-thanos/prometheus-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom-thanos/prometheus-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom-thanos/prometheus-prometheus.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom-thanos/prometheus-roleConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom-thanos/prometheus-roleConfig.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom-thanos/prometheus-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom-thanos/prometheus-service.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom-thanos/setup/0namespace-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: monitoring 5 | -------------------------------------------------------------------------------- /manifests/profiles/prom/kube-state-metrics-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/kube-state-metrics-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/kube-state-metrics-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/kube-state-metrics-deployment.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/kube-state-metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/kube-state-metrics-service.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/kubernetes-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/kubernetes-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-clusterRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-clusterRole.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-clusterRoleBinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-clusterRoleBinding.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-networkPolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-networkPolicy.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-podDisruptionBudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-podDisruptionBudget.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-prometheus.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-prometheusRule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-prometheusRule.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-roleBindingConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-roleBindingConfig.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-roleConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-roleConfig.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-service.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/prometheus-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/prom/prometheus-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/profiles/prom/setup/0namespace-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: monitoring 5 | -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-query-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-query-deployment.yaml -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-query-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-query-service.yaml -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-query-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-query-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-query-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-query-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-store-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-store-service.yaml -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-store-serviceAccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-store-serviceAccount.yaml -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-store-serviceMonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-store-serviceMonitor.yaml -------------------------------------------------------------------------------- /manifests/profiles/thanos/thanos-store-statefulSet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/manifests/profiles/thanos/thanos-store-statefulSet.yaml -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/apps/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/helm_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/apps/v1alpha1/helm_release.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/kustomization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/apps/v1alpha1/kustomization.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/apps/v1alpha1/types.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/apps/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/apps/v1alpha1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/apps/v1alpha1/zz_generated.register.go -------------------------------------------------------------------------------- /pkg/apis/backups/v1alpha1/backup_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/backups/v1alpha1/backup_type.go -------------------------------------------------------------------------------- /pkg/apis/backups/v1alpha1/common_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/backups/v1alpha1/common_type.go -------------------------------------------------------------------------------- /pkg/apis/backups/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/backups/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/backups/v1alpha1/migrate_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/backups/v1alpha1/migrate_type.go -------------------------------------------------------------------------------- /pkg/apis/backups/v1alpha1/restore_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/backups/v1alpha1/restore_type.go -------------------------------------------------------------------------------- /pkg/apis/backups/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/backups/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/backups/v1alpha1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/backups/v1alpha1/zz_generated.register.go -------------------------------------------------------------------------------- /pkg/apis/cluster/v1alpha1/attached_cluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/cluster/v1alpha1/attached_cluster_types.go -------------------------------------------------------------------------------- /pkg/apis/cluster/v1alpha1/cluster_consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/cluster/v1alpha1/cluster_consts.go -------------------------------------------------------------------------------- /pkg/apis/cluster/v1alpha1/cluster_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/cluster/v1alpha1/cluster_types.go -------------------------------------------------------------------------------- /pkg/apis/cluster/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/cluster/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/cluster/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/cluster/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/cluster/v1alpha1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/cluster/v1alpha1/zz_generated.register.go -------------------------------------------------------------------------------- /pkg/apis/fleet/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/fleet/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/fleet/v1alpha1/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/fleet/v1alpha1/types.go -------------------------------------------------------------------------------- /pkg/apis/fleet/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/fleet/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/fleet/v1alpha1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/fleet/v1alpha1/zz_generated.register.go -------------------------------------------------------------------------------- /pkg/apis/infra/v1alpha1/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/infra/v1alpha1/cluster.go -------------------------------------------------------------------------------- /pkg/apis/infra/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/infra/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/infra/v1alpha1/machine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/infra/v1alpha1/machine.go -------------------------------------------------------------------------------- /pkg/apis/infra/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/infra/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/infra/v1alpha1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/infra/v1alpha1/zz_generated.register.go -------------------------------------------------------------------------------- /pkg/apis/pipeline/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/pipeline/v1alpha1/doc.go -------------------------------------------------------------------------------- /pkg/apis/pipeline/v1alpha1/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/pipeline/v1alpha1/type.go -------------------------------------------------------------------------------- /pkg/apis/pipeline/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/pipeline/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /pkg/apis/pipeline/v1alpha1/zz_generated.register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/apis/pipeline/v1alpha1/zz_generated.register.go -------------------------------------------------------------------------------- /pkg/client-go/generated/clientset/versioned/clientset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client-go/generated/clientset/versioned/clientset.go -------------------------------------------------------------------------------- /pkg/client-go/generated/clientset/versioned/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client-go/generated/clientset/versioned/doc.go -------------------------------------------------------------------------------- /pkg/client-go/generated/clientset/versioned/fake/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client-go/generated/clientset/versioned/fake/doc.go -------------------------------------------------------------------------------- /pkg/client-go/generated/clientset/versioned/scheme/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client-go/generated/clientset/versioned/scheme/doc.go -------------------------------------------------------------------------------- /pkg/client-go/generated/listers/backups/v1alpha1/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client-go/generated/listers/backups/v1alpha1/backup.go -------------------------------------------------------------------------------- /pkg/client-go/generated/listers/cluster/v1alpha1/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client-go/generated/listers/cluster/v1alpha1/cluster.go -------------------------------------------------------------------------------- /pkg/client-go/generated/listers/fleet/v1alpha1/fleet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client-go/generated/listers/fleet/v1alpha1/fleet.go -------------------------------------------------------------------------------- /pkg/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client/client.go -------------------------------------------------------------------------------- /pkg/client/helmclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/client/helmclient.go -------------------------------------------------------------------------------- /pkg/cluster-operator/attachedcluster_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/attachedcluster_controller.go -------------------------------------------------------------------------------- /pkg/cluster-operator/cluster_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/cluster_controller.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_clusterconfig.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_clusterconfig.template -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_clusterhosts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_clusterhosts.template -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_controller.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_controller_test.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_helper.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_helper_test.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_scale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_scale.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_scale_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_scale_test.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_upgrade.go -------------------------------------------------------------------------------- /pkg/cluster-operator/customcluster_upgrade_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/customcluster_upgrade_test.go -------------------------------------------------------------------------------- /pkg/cluster-operator/custommachine_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/cluster-operator/custommachine_controller.go -------------------------------------------------------------------------------- /pkg/fleet-manager/application/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/application/controller.go -------------------------------------------------------------------------------- /pkg/fleet-manager/application/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/application/helper.go -------------------------------------------------------------------------------- /pkg/fleet-manager/application/rollout_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/application/rollout_helper.go -------------------------------------------------------------------------------- /pkg/fleet-manager/application/rollout_helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/application/rollout_helper_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/backup_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/backup_controller.go -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/backup_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/backup_controller_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/migrate_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/migrate_controller.go -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/restore_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/restore_controller.go -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/shared.go -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/shared_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/shared_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/testdata/backup/include-ns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/testdata/backup/include-ns.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/testdata/backup/schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/testdata/backup/schedule.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/backup/testdata/restore/minimal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/backup/testdata/restore/minimal.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/clusters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/clusters.go -------------------------------------------------------------------------------- /pkg/fleet-manager/controlplane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/controlplane.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_cluster.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_backup.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_distributedstorage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_distributedstorage.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_flagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_flagger.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_grafana.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_grafana.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_kyverno.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_kyverno.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_metric.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_provider.go -------------------------------------------------------------------------------- /pkg/fleet-manager/fleet_plugin_submariner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/fleet_plugin_submariner.go -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/manifests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/manifests.go -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugin.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugin.tpl -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/flagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/flagger.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/grafana.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/kuma.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/kuma.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/kyverno.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/kyverno.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/nginx.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/prometheus.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/rook-ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/rook-ceph.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/rook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/rook.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/sm-broker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/sm-broker.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/sm-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/sm-operator.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/testloader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/testloader.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/thanos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/thanos.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/manifests/plugins/velero.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/manifests/plugins/velero.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/controller.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/customTask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/customTask.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/customTask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/customTask_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/pipeline.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/pipeline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/pipeline_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/predefined_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/predefined_task.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/rbac.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/rbac_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/rbac_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/trigger.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/trigger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/trigger_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/pipeline/render/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/pipeline/render/util.go -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/plugin.go -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/plugin_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/render.go -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/render_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/render_test.go -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/testdata/backup/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/testdata/backup/default.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/testdata/grafana/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/testdata/grafana/default.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/testdata/kyverno/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/testdata/kyverno/default.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/testdata/rollout/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/testdata/rollout/default.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/testdata/sm-broker/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/testdata/sm-broker/default.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/plugin/testdata/thanos/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/plugin/testdata/thanos/default.yaml -------------------------------------------------------------------------------- /pkg/fleet-manager/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/fleet-manager/util.go -------------------------------------------------------------------------------- /pkg/generic/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/generic/base.go -------------------------------------------------------------------------------- /pkg/generic/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/generic/options.go -------------------------------------------------------------------------------- /pkg/infra/aws/aws_pod_identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/aws_pod_identity.go -------------------------------------------------------------------------------- /pkg/infra/aws/aws_pod_identity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/aws_pod_identity_test.go -------------------------------------------------------------------------------- /pkg/infra/aws/bucket/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/bucket/aws_test.go -------------------------------------------------------------------------------- /pkg/infra/aws/bucket/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/bucket/s3.go -------------------------------------------------------------------------------- /pkg/infra/aws/bucket/s3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/bucket/s3_test.go -------------------------------------------------------------------------------- /pkg/infra/aws/cloudformation/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/cloudformation/template.go -------------------------------------------------------------------------------- /pkg/infra/aws/cloudformation/template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/cloudformation/template_test.go -------------------------------------------------------------------------------- /pkg/infra/aws/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/provider.go -------------------------------------------------------------------------------- /pkg/infra/aws/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/aws/util.go -------------------------------------------------------------------------------- /pkg/infra/openid/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/openid/cert.go -------------------------------------------------------------------------------- /pkg/infra/openid/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/openid/config.go -------------------------------------------------------------------------------- /pkg/infra/openid/discovery.json.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/openid/discovery.json.tpl -------------------------------------------------------------------------------- /pkg/infra/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/plugin/plugin.go -------------------------------------------------------------------------------- /pkg/infra/plugin/plugin.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/plugin/plugin.yaml.tpl -------------------------------------------------------------------------------- /pkg/infra/plugin/plugin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/plugin/plugin_test.go -------------------------------------------------------------------------------- /pkg/infra/plugin/testdata/aws-cni-calico.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/plugin/testdata/aws-cni-calico.yaml -------------------------------------------------------------------------------- /pkg/infra/plugin/testdata/aws-cni-custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/plugin/testdata/aws-cni-custom.yaml -------------------------------------------------------------------------------- /pkg/infra/plugin/testdata/aws-cni-custom.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/plugin/testdata/aws-cni-custom.yaml.tpl -------------------------------------------------------------------------------- /pkg/infra/plugin/testdata/cluster/cni-extra.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/plugin/testdata/cluster/cni-extra.yaml -------------------------------------------------------------------------------- /pkg/infra/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/provider/provider.go -------------------------------------------------------------------------------- /pkg/infra/scope/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/scope/cluster.go -------------------------------------------------------------------------------- /pkg/infra/scope/cluster_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/scope/cluster_test.go -------------------------------------------------------------------------------- /pkg/infra/service/pod_identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/service/pod_identity.go -------------------------------------------------------------------------------- /pkg/infra/template/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/template/aws.go -------------------------------------------------------------------------------- /pkg/infra/template/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/template/aws_test.go -------------------------------------------------------------------------------- /pkg/infra/template/testdata/capa-quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/template/testdata/capa-quickstart.yaml -------------------------------------------------------------------------------- /pkg/infra/template/testdata/enable-podidentity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/template/testdata/enable-podidentity.yaml -------------------------------------------------------------------------------- /pkg/infra/template/testdata/with-volumes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/template/testdata/with-volumes.yaml -------------------------------------------------------------------------------- /pkg/infra/template/testdata/without-sshkey.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/template/testdata/without-sshkey.yaml -------------------------------------------------------------------------------- /pkg/infra/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/util/util.go -------------------------------------------------------------------------------- /pkg/infra/util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/infra/util/util_test.go -------------------------------------------------------------------------------- /pkg/istiocert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/istiocert/cert.go -------------------------------------------------------------------------------- /pkg/istiocert/plugged.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/istiocert/plugged.go -------------------------------------------------------------------------------- /pkg/istiocert/selfsigned.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/istiocert/selfsigned.go -------------------------------------------------------------------------------- /pkg/moreos/moreos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/moreos/moreos.go -------------------------------------------------------------------------------- /pkg/moreos/proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/moreos/proc.go -------------------------------------------------------------------------------- /pkg/moreos/proc_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/moreos/proc_windows.go -------------------------------------------------------------------------------- /pkg/pipeline/execution/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/pipeline/execution/list/list.go -------------------------------------------------------------------------------- /pkg/pipeline/execution/list/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/pipeline/execution/list/list_test.go -------------------------------------------------------------------------------- /pkg/pipeline/execution/logs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/pipeline/execution/logs/logs.go -------------------------------------------------------------------------------- /pkg/plugin/argocd/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/argocd/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/istio/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/istio/install.go -------------------------------------------------------------------------------- /pkg/plugin/istio/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/istio/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/istio/precheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/istio/precheck.go -------------------------------------------------------------------------------- /pkg/plugin/istio/testdata/eastwest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/istio/testdata/eastwest.yaml -------------------------------------------------------------------------------- /pkg/plugin/istio/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/istio/util.go -------------------------------------------------------------------------------- /pkg/plugin/istio/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/istio/util_test.go -------------------------------------------------------------------------------- /pkg/plugin/join/kubeedge/kubeedge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/join/kubeedge/kubeedge.go -------------------------------------------------------------------------------- /pkg/plugin/join/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/join/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/karmada/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/karmada/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/kubeedge/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/kubeedge/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/kubeedge/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/kubeedge/util.go -------------------------------------------------------------------------------- /pkg/plugin/pixie/vizier/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/pixie/vizier/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/prometheus/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/prometheus/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/prometheus/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/prometheus/util.go -------------------------------------------------------------------------------- /pkg/plugin/prometheus/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/prometheus/util_test.go -------------------------------------------------------------------------------- /pkg/plugin/submariner/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/submariner/install.go -------------------------------------------------------------------------------- /pkg/plugin/submariner/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/submariner/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/thanos/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/thanos/plugin.go -------------------------------------------------------------------------------- /pkg/plugin/thanos/thanos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/thanos/thanos.go -------------------------------------------------------------------------------- /pkg/plugin/thanos/thanos_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/thanos/thanos_test.go -------------------------------------------------------------------------------- /pkg/plugin/volcano/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/plugin/volcano/plugin.go -------------------------------------------------------------------------------- /pkg/tool/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/tool/list.go -------------------------------------------------------------------------------- /pkg/tool/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/tool/list_test.go -------------------------------------------------------------------------------- /pkg/typemeta/typemeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/typemeta/typemeta.go -------------------------------------------------------------------------------- /pkg/util/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/cluster.go -------------------------------------------------------------------------------- /pkg/util/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/cmd.go -------------------------------------------------------------------------------- /pkg/util/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/download.go -------------------------------------------------------------------------------- /pkg/util/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/exec.go -------------------------------------------------------------------------------- /pkg/util/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/kube.go -------------------------------------------------------------------------------- /pkg/util/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/policy.go -------------------------------------------------------------------------------- /pkg/util/policy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/policy_test.go -------------------------------------------------------------------------------- /pkg/util/testdata/istio-operator-cpp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/testdata/istio-operator-cpp.yaml -------------------------------------------------------------------------------- /pkg/util/testdata/istio-operator-pp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/testdata/istio-operator-pp.yaml -------------------------------------------------------------------------------- /pkg/util/testdata/istio-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/testdata/istio-operator.yaml -------------------------------------------------------------------------------- /pkg/util/testdata/volcano-cpp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/testdata/volcano-cpp.yaml -------------------------------------------------------------------------------- /pkg/util/testdata/volcano-pp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/testdata/volcano-pp.yaml -------------------------------------------------------------------------------- /pkg/util/testdata/volcano.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/testdata/volcano.yaml -------------------------------------------------------------------------------- /pkg/util/untar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/untar.go -------------------------------------------------------------------------------- /pkg/util/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/util/url.go -------------------------------------------------------------------------------- /pkg/version/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/version/types.go -------------------------------------------------------------------------------- /pkg/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/version/version.go -------------------------------------------------------------------------------- /pkg/webhooks/application_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/application_webhook.go -------------------------------------------------------------------------------- /pkg/webhooks/application_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/application_webhook_test.go -------------------------------------------------------------------------------- /pkg/webhooks/attachedcluster_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/attachedcluster_webhook.go -------------------------------------------------------------------------------- /pkg/webhooks/attachedcluster_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/attachedcluster_webhook_test.go -------------------------------------------------------------------------------- /pkg/webhooks/cluster_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/cluster_webhook.go -------------------------------------------------------------------------------- /pkg/webhooks/cluster_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/cluster_webhook_test.go -------------------------------------------------------------------------------- /pkg/webhooks/customcluster_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/customcluster_webhook.go -------------------------------------------------------------------------------- /pkg/webhooks/customcluster_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/customcluster_webhook_test.go -------------------------------------------------------------------------------- /pkg/webhooks/custommachine_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/custommachine_webhook.go -------------------------------------------------------------------------------- /pkg/webhooks/custommachine_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/custommachine_webhook_test.go -------------------------------------------------------------------------------- /pkg/webhooks/testdata/application/invalid-fleet1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/application/invalid-fleet1.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/application/invalid-fleet2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/application/invalid-fleet2.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/aws-miss-region.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/aws-miss-region.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/invalid-pod-cidr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/invalid-pod-cidr.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/invalid-service-cidr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/invalid-service-cidr.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/invalid-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/invalid-version.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/invalid-vpc-cidr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/invalid-vpc-cidr.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/miss-infra-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/miss-infra-type.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/miss-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/miss-secret.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/cluster/miss-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/cluster/miss-version.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/customcluster/invalid-address.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/customcluster/invalid-address.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/customcluster/miss-cni-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/customcluster/miss-cni-type.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/custommachine/miss-master.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/custommachine/miss-master.yaml -------------------------------------------------------------------------------- /pkg/webhooks/testdata/custommachine/miss-node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/testdata/custommachine/miss-node.yaml -------------------------------------------------------------------------------- /pkg/webhooks/validation_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurator-dev/kurator/HEAD/pkg/webhooks/validation_utils.go --------------------------------------------------------------------------------