pub struct ChallengeSolverHttp01GatewayHttpRoute {
pub labels: Option<BTreeMap<String, String>>,
pub parent_refs: Option<Vec<ChallengeSolverHttp01GatewayHttpRouteParentRefs>>,
pub pod_template: Option<ChallengeSolverHttp01GatewayHttpRoutePodTemplate>,
pub service_type: Option<String>,
}Expand description
The Gateway API is a sig-network community API that models service networking in Kubernetes (https://gateway-api.sigs.k8s.io/). The Gateway solver will create HTTPRoutes with the specified labels in the same namespace as the challenge. This solver is experimental, and fields / behaviour may change in the future.
Fields§
§labels: Option<BTreeMap<String, String>>Custom labels that will be applied to HTTPRoutes created by cert-manager while solving HTTP-01 challenges.
parent_refs: Option<Vec<ChallengeSolverHttp01GatewayHttpRouteParentRefs>>When solving an HTTP-01 challenge, cert-manager creates an HTTPRoute. cert-manager needs to know which parentRefs should be used when creating the HTTPRoute. Usually, the parentRef references a Gateway. See: https://gateway-api.sigs.k8s.io/api-types/httproute/#attaching-to-gateways
pod_template: Option<ChallengeSolverHttp01GatewayHttpRoutePodTemplate>Optional pod template used to configure the ACME challenge solver pods used for HTTP01 challenges.
service_type: Option<String>Optional service type for Kubernetes solver service. Supported values are NodePort or ClusterIP. If unset, defaults to NodePort.
Trait Implementations§
Source§impl Clone for ChallengeSolverHttp01GatewayHttpRoute
impl Clone for ChallengeSolverHttp01GatewayHttpRoute
Source§fn clone(&self) -> ChallengeSolverHttp01GatewayHttpRoute
fn clone(&self) -> ChallengeSolverHttp01GatewayHttpRoute
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ChallengeSolverHttp01GatewayHttpRoute
impl Default for ChallengeSolverHttp01GatewayHttpRoute
Source§fn default() -> ChallengeSolverHttp01GatewayHttpRoute
fn default() -> ChallengeSolverHttp01GatewayHttpRoute
Source§impl<'de> Deserialize<'de> for ChallengeSolverHttp01GatewayHttpRoute
impl<'de> Deserialize<'de> for ChallengeSolverHttp01GatewayHttpRoute
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for ChallengeSolverHttp01GatewayHttpRoute
impl PartialEq for ChallengeSolverHttp01GatewayHttpRoute
Source§fn eq(&self, other: &ChallengeSolverHttp01GatewayHttpRoute) -> bool
fn eq(&self, other: &ChallengeSolverHttp01GatewayHttpRoute) -> bool
self and other values to be equal, and is used by ==.