kcr_mutations_gatekeeper_sh/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 `mutations.gatekeeper.sh` group. Each binding is generated with [kopium](https://github.com/kube-rs/kopium), updated and released weekly.
3
4# Available Custom Resources
5
6## mutations.gatekeeper.sh/v1
7- `Assign`
8- `AssignMetadata`
9- `ModifySet`
10## mutations.gatekeeper.sh/v1alpha1
11- `Assign`
12- `AssignImage`
13- `AssignMetadata`
14- `ModifySet`
15## mutations.gatekeeper.sh/v1beta1
16- `Assign`
17- `AssignMetadata`
18- `ModifySet`
19*/
20#[cfg(feature = "v1")]
21pub mod v1;
22#[cfg(feature = "v1alpha1")]
23pub mod v1alpha1;
24#[cfg(feature = "v1beta1")]
25pub mod v1beta1;