docs.rs failed to build kube-0.46.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
kube-0.99.0
Crate for interacting with the Kubernetes API
This crate includes the tools for manipulating Kubernetes resources as well as keeping track of those resources as they change over time
Example
The following example will create a [Pod
][k8s_openapi::api::core::v1::Pod]
and then watch for it to become available using a manual [Api::watch
] call.
use ;
use ;
use Client;
use Pod;
async