Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iutx/eoe-admission-controller
admission-controller for erda on erda.
https://github.com/iutx/eoe-admission-controller
admission-controller eoe erda erda-on-erda
Last synced: 20 days ago
JSON representation
admission-controller for erda on erda.
- Host: GitHub
- URL: https://github.com/iutx/eoe-admission-controller
- Owner: iutx
- Created: 2021-10-27T05:13:11.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-11T06:36:38.000Z (2 months ago)
- Last Synced: 2024-10-16T10:37:09.244Z (2 months ago)
- Topics: admission-controller, eoe, erda, erda-on-erda
- Language: Go
- Homepage:
- Size: 82 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eoe admission controller
## How to build image ?
```shell
make build-image
```## How to build charts ?
```shell
helm package charts/eoe-admission -d ./packages
```## How to install?
```shell
helm install eoe-admission packages/eoe-admission-{version}.tgz -n {namespace} --create-namespace
```## Local develop
```shell
kubectl get secret eoe-admission -o jsonpath='{.data.ca}'| base64 -d > ca
kubectl get secret eoe-admission -o jsonpath='{.data.tls\.crt}'| base64 -d > tls.crt
kubectl get secret eoe-admission -o jsonpath='{.data.tls\.key}'| base64 -d > tls.key
```