docs.rs failed to build istio-api-rs-0.11.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.
istio-api-rs
A collection of CRDs used in Istio, generated by kopium
directly from istio CRDs
.
Quick Start
istio-api-rs
is built on top of kube-rs
as a set of CRDs, which means it can be easily used under kube_rs
like below:
use ;
use ;
use TokioExecutor;
use ;
async
And in cargo.toml
, you should specify the API version for both k8s
& istio
like:
[]
# ...
= { = "1", = ["full"] }
= "0.1.10"
= "0.5.1"
= "0.20"
= "1"
= "0.9"
= "0.3"
= { = "0.96", = ["runtime", "derive"] }
= { = "0.23", = ["v1_31"] }
= { = "0.10.0", = ["v1_23"] }
# ...
Other
istio-api-rs
is currently developed and tested on istio/api since v1.10, the lower api version is out of this repository's concern.
The repository is using istio-api-rs-codegen
as code generator, go check that repository if you want to know more about how the codes are generated.
For release package, see crates.io.