Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.sh

go build ./cmd/stu-controller/
```

### 运行controller

```shell script
./stu-controller -kubeconfig ~/.kube/config
```