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

https://github.com/poneding/exposer-controller

custom controller sample.
https://github.com/poneding/exposer-controller

Last synced: 3 days ago
JSON representation

custom controller sample.

Awesome Lists containing this project

README

          

# exposer

## build exposer

```bash
go build -o exposer .
```

## run exposer

```bash
./exposer
```

## test exposer

```bash
kubectl create ns exposer-test
kubectl create deployment nginx -n exposer-test --image=nginx
kubectl get svc ing -n exposer-test
```

## clean up

```bash
kubectl delete deployment nginx -n exposer-test
kubectl delete svc nginx -n exposer-test
kubectl delete ing nginx -n exposer-test
```