Popularity
4.3
Declining
Activity
1.9
Stable
249
12
23
Programming language: Rust
License: Apache License 2.0
kubernetes-rust alternatives and similar packages
Based on the "Web programming" category.
Alternatively, view kubernetes-rust alternatives based on common mentions on social networks and blogs.
-
gutenberg
A fast static site generator in a single binary with everything built-in. https://www.getzola.org -
burn
DISCONTINUED. Burn is a new comprehensive dynamic Deep Learning Framework built using Rust with extreme flexibility, compute efficiency and portability as its primary goals. [Moved to: https://github.com/Tracel-AI/burn] -
License
DISCONTINUED. Tiny, no-nonsense, self-contained, Tensorflow and ONNX inference [Moved to: https://github.com/sonos/tract] -
rust-musl-builder
Docker images for compiling static Rust binaries using musl-libc and musl-gcc, with static versions of useful C libraries. Supports openssl and diesel crates. -
heroku-buildpack-rust
A buildpack for Rust applications on Heroku, with full support for Rustup, cargo and build caching. -
url-crawler
DISCONTINUED. Rust crate for configurable parallel web crawling, designed to crawl for content
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of kubernetes-rust or a related project?
README
kubernetes-rust
Rust client for Kubernetes API.
Example
List all Pods on kube-system
:
extern crate failure;
extern crate k8s_openapi;
extern crate kubernetes;
use k8s_openapi::api::core::v1 as api;
use kubernetes::client::APIClient;
use kubernetes::config;
fn main() {
let kubeconfig = config::load_kube_config().expect("failed to load kubeconfig");
let kubeclient = APIClient::new(kubeconfig);
let (req, _) = api::Pod::list_namespaced_pod("kube-system", Default::default())
.expect("failed to create a request");
let list_pod = kubeclient
.request::<api::PodList>(req)
.expect("failed to list up pods");
println!("{:?}", list_pod);
}