kcr_metallb_io/
lib.rs

1/*!
2This crate contains [kube-rs](https://kube.rs/) compatible bindings for Kubernetes [custom resources](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/) for the `metallb.io` group. Each binding is generated with [kopium](https://github.com/kube-rs/kopium), updated and released weekly.
3
4# Available Custom Resources
5
6## metallb.io/v1beta1
7- `BFDProfile`
8- `BGPAdvertisement`
9- `BGPPeer`
10- `Community`
11- `IPAddressPool`
12- `L2Advertisement`
13- `MetalLB`
14- `ServiceL2Status`
15## metallb.io/v1beta2
16- `BGPPeer`
17*/
18#[cfg(feature = "v1beta1")]
19pub mod v1beta1;
20#[cfg(feature = "v1beta2")]
21pub mod v1beta2;