https://github.com/easysoft/qucheng-operator
qucheng operator
https://github.com/easysoft/qucheng-operator
Last synced: 23 days ago
JSON representation
qucheng operator
- Host: GitHub
- URL: https://github.com/easysoft/qucheng-operator
- Owner: easysoft
- License: other
- Created: 2022-07-11T03:08:09.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-10T17:24:02.000Z (over 3 years ago)
- Last Synced: 2025-03-06T03:32:32.435Z (about 1 year ago)
- Language: Go
- Size: 504 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# qucheng-operator
## 安装
```bash
git clone https://github.com/easysoft/qucheng-operator.git
cd qucheng-operator
kubectl create ns cne-system
# helm 方式安装
helm install -n cne-system qucheng-operator config/charts/cne-operator
# yaml 方式安装
kubectl apply -f hack/deploy/deploy.yaml
```
## 本地开发
- go,推荐go1.18
- docker
- kubectl
- helm
- kind,推荐最新版本
```
# kind部署集群
bash hack/kind/setup.sh
# gen crd
make local-crd
kubetl apply -f hack/deploy/crd.yaml
# 运行
make run
```