Popularity
4.5
Declining
Activity
0.0
Stable
245
11
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.
-
actix-web
Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust. -
gutenberg
A fast static site generator in a single binary with everything built-in. https://www.getzola.org -
burn
Burn - A Flexible and Comprehensive Deep Learning Framework in Rust -
Gotham
A flexible web framework that promotes stability, safety, security and speed. -
Percy
Build frontend browser apps with Rust + WebAssembly. Supports server side rendering. -
License
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. -
tungstenite-rs
Lightweight stream-based WebSocket implementation for Rust. -
Rouille, Rust web server middleware
Web framework in Rust -
heroku-buildpack-rust
A buildpack for Rust applications on Heroku, with full support for Rustup, cargo and build caching. -
Sapper
A lightweight web framework built on hyper, implemented in Rust language. -
OBSOLETION NOTICE
Completely OBSOLETE Rust HTTP library (server and client) -
Rustless
REST-like API micro-framework for Rust. Works with Iron. -
handlebars-iron
Handlebars middleware for Iron web framework -
url-crawler
Rust crate for configurable parallel web crawling, designed to crawl for content -
urlshortener-rs
A very-very simple url shortener (client) for Rust. -
rust-websocket
A WebSocket (RFC6455) library written in Rust -
The FastCGI Rust implementation.
Native Rust library for FastCGI
Static code analysis for 29 languages.
Your projects are multi-language. So is SonarQube analysis. Find Bugs, Vulnerabilities, Security Hotspots, and Code Smells so you can release quality code every time. Get started analyzing your projects today for free.
Promo
www.sonarqube.org
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);
}