case class IngressClassSpec(controller: Optional[String] = Optional.Absent, parameters: Optional[IngressClassParametersReference] = Optional.Absent) extends Product with Serializable
IngressClassSpec provides information about the class of an Ingress.
- controller
Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.
- Alphabetic
- By Inheritance
- IngressClassSpec
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
IngressClassSpec(controller: Optional[String] = Optional.Absent, parameters: Optional[IngressClassParametersReference] = Optional.Absent)
- controller
Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.
Value Members
- val controller: Optional[String]
-
def
getController: IO[K8sFailure, String]
Controller refers to the name of the controller that should handle this class.
Controller refers to the name of the controller that should handle this class. This allows for different "flavors" that are controlled by the same controller. For example, you may have different Parameters for the same implementing controller. This should be specified as a domain-prefixed path no more than 250 characters in length, e.g. "acme.io/ingress-controller". This field is immutable.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getParameters: IO[K8sFailure, IngressClassParametersReference]
Gets parameters.
Gets parameters.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val parameters: Optional[IngressClassParametersReference]