kcr_gateway_nginx_org/
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 `gateway.nginx.org` group. Each binding is generated with [kopium](https://github.com/kube-rs/kopium), updated and released weekly.
3
4# Available Custom Resources
5
6## gateway.nginx.org/v1alpha1
7- `ClientSettingsPolicy`
8- `NginxGateway`
9- `NginxProxy`
10- `ObservabilityPolicy`
11## gateway.nginx.org/v1alpha2
12- `NginxProxy`
13- `ObservabilityPolicy`
14*/
15#[cfg(feature = "v1alpha1")]
16pub mod v1alpha1;
17#[cfg(feature = "v1alpha2")]
18pub mod v1alpha2;