Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pefish/k8s-controller-template
K8s controller template
https://github.com/pefish/k8s-controller-template
controller k8s template
Last synced: 5 days ago
JSON representation
K8s controller template
- Host: GitHub
- URL: https://github.com/pefish/k8s-controller-template
- Owner: pefish
- Created: 2020-11-25T02:38:40.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-25T07:35:20.000Z (about 4 years ago)
- Last Synced: 2024-11-16T01:23:05.015Z (2 months ago)
- Topics: controller, k8s, template
- Language: Go
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 快速使用
### 部署自定义资源
```shell script
kubectl apply -f ./artifact/crd.yaml
```### 部署一个资源对象
```shell script
kubectl apply -f ./artifact/stu.yaml
```### 构建controller
```shell script
./script/gene-codes.shgo build ./cmd/stu-controller/
```### 运行controller
```shell script
./stu-controller -kubeconfig ~/.kube/config
```