# Kurator **Repository Path**: xu_hong_liang/kurator ## Basic Information - **Project Name**: Kurator - **Description**: Kurator是一个开源的分布式云原生平台,帮助用户构建自己的分布式云原生基础设施,助力企业数字化转型。 Kurator集成了流行的云原生软件堆栈,包括Karmada,KubeEdge,Volcano,Kubernetes,Istio,Prometheus等。它为多云和多集群提供了强大的功能,包括: 多云、边缘-云、边缘-边缘协同 统一资源编排 统一调度 统一流量管理 统一遥测 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 10 - **Created**: 2023-03-27 - **Last Updated**: 2023-03-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Kurator Kurator is an open source distributed cloud native platform that helps users to build their own distributed cloud native infrastructure and facilitates enterprise digital transformation. Kurator integrates popular cloud native software stacks including [Karmada](https://github.com/karmada-io/karmada), [KubeEdge](https://github.com/kubeedge/kubeedge), [Volcano](https://github.com/volcano-sh/volcano), [Kubernetes](https://github.com/kubernetes/kubernetes), [Istio](https://github.com/istio/istio), [Prometheus](https://github.com/prometheus/prometheus), etc. It provides powerful capabilities to multi-cloud and multi-cluster, including: - Multi-cloud, Edge-cloud, Edge-edge Synergy - Unified Resource Orchestration - Unified Scheduling - Unified Traffic Management - Unified Telemetry ## Quick start This guide will cover: - Install Kurator - Install Karmada and join a Kubernetes member cluster - Install Istio - Install KubeEdge and join an edge node - Install Volcano - Install Prometheus ### Install Kurator **Clone this repo to your machine:** ```console git clone https://github.com/kurator-dev/kurator.git ``` **Change to the Kurator directory:** ```console cd kurator ``` **Build Kurator:** ```console make kurator ``` An executable file named `kurator` will be created at out/$(GOOS)-$(GOARCH)/ **Put the `kurator` to the executable directory:** ```console cp out/linux-amd64/kurator /usr/bin/ ``` ### Local env setup ```console hack/local-dev-setup.sh ``` This script will create three clusters for you, one is used to host Karmada control plane and the other two will be joined as member clusters. ### Install Karmada **Install Karmada control plane:** ```console kurator install karmada --kubeconfig=/root/.kube/kurator-host.config ``` **Join cluster `member1`:** ```console kurator join karmada member1 \ --cluster-kubeconfig=/root/.kube/kurator-members.config \ --cluster-context=kurator-member1 ``` **Join cluster `member2`:** ```console kurator join karmada member2 \ --cluster-kubeconfig=/root/.kube/kurator-members.config \ --cluster-context=kurator-member2 ``` ### Install Istio ```console kurator install istio --primary member1 --remote member2 ``` ### Install KubeEdge **Install KubeEdge control plane:** ```console kurator install kubeedge --cluster member1 --advertise-address= ``` **Join edge node:** ```console kurator join edge --cluster member1 \ --cloudcore-address= \ --node-ip= \ -p="${NODE_PWD}" ``` ### Install Volcano ```console kurator install volcano ``` ### Install Prometheus ```console kurator install prometheus --primary member1 ``` ## Contributing If you're interested in being a contributor and want to get involved in developing the Kurator code, please see [CONTRIBUTING](CONTRIBUTING.md) for details on submitting patches and the contribution workflow. ## License Kurator is under the Apache 2.0 license. See the [LICENSE](LICENSE) file for details.