Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kitagry/krustjob
Minimal CronJob Controller for Kubernetes written in Rust.
https://github.com/kitagry/krustjob
kubernetes rust
Last synced: 15 days ago
JSON representation
Minimal CronJob Controller for Kubernetes written in Rust.
- Host: GitHub
- URL: https://github.com/kitagry/krustjob
- Owner: kitagry
- Created: 2021-10-24T14:54:58.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-02T13:00:27.000Z (about 3 years ago)
- Last Synced: 2024-12-15T14:43:52.085Z (20 days ago)
- Topics: kubernetes, rust
- Language: Rust
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## KrustJob
Minimal CronJob for Kubernetes.
This is very experimental project.### How to use
#### Register CustomResource
```
cargo run --bin crdgen | kubectl create -f -
```When you update CRD.
```
cargo run --bin crdgen | kubectl replace -f -
```#### Start CustomController
```
cargo run --bin krustjob
```#### Create new KrustJob
```
kubectl apply -f ./config/sample/krustjob.yaml
```