Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anowell/kubeclient-rs
Kubernetes API client in Rust
https://github.com/anowell/kubeclient-rs
Last synced: about 1 month ago
JSON representation
Kubernetes API client in Rust
- Host: GitHub
- URL: https://github.com/anowell/kubeclient-rs
- Owner: anowell
- License: mit
- Created: 2017-07-31T06:23:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-23T05:11:59.000Z (about 5 years ago)
- Last Synced: 2024-10-11T00:07:18.700Z (2 months ago)
- Language: Rust
- Size: 64.5 KB
- Stars: 30
- Watchers: 9
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
An ergonomic Kubernetes API client to manage Kubernetes resources
[![Crates.io](https://img.shields.io/crates/v/kubeclient.svg?maxAge=2592000)](https://crates.io/crates/kubeclient)
## Documentation
[docs.rs/kubeclient](http://docs.rs/kubeclient)
## Usage
You can find out about the basic usage in [examples](/examples).
```
# Ensure you have a valid kubeconfig in admin.conf## Get secret
cargo run --example get-secret secret123
[...]## List nodes
cargo run --example list-nodes
[...]```
## Status
This client is still very incomplete, so expect to file issues and PRs to
unblock yourself if you actually take this crate as a dependency.It has basic support for many common operations, namely the ones I've personally needed,
but I'm not yet using this library in production, so it's not very high priority for me.
That said, I will commit to discussing issues and reviewing PRs in a timely manner.