IngressSpec

io.k8s.api.networking.v1.IngressSpec
See theIngressSpec companion object
final case class IngressSpec(defaultBackend: Option[IngressBackend], ingressClassName: Option[String], rules: Option[Seq[IngressRule]], tls: Option[Seq[IngressTLS]])

IngressSpec describes the Ingress the user wishes to exist.

Attributes

Companion
object
Source
IngressSpec.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def addRules(newValues: IngressRule*): IngressSpec

Appends new values to rules

Appends new values to rules

Attributes

Source
IngressSpec.scala
def addTls(newValues: IngressTLS*): IngressSpec

Appends new values to tls

Appends new values to tls

Attributes

Source
IngressSpec.scala

if defaultBackend has a value, transforms to the result of function

if defaultBackend has a value, transforms to the result of function

Attributes

Source
IngressSpec.scala
def mapIngressClassName(f: String => String): IngressSpec

if ingressClassName has a value, transforms to the result of function

if ingressClassName has a value, transforms to the result of function

Attributes

Source
IngressSpec.scala
def mapRules(f: (Seq[IngressRule]) => Seq[IngressRule]): IngressSpec

if rules has a value, transforms to the result of function

if rules has a value, transforms to the result of function

Attributes

Source
IngressSpec.scala
def mapTls(f: (Seq[IngressTLS]) => Seq[IngressTLS]): IngressSpec

if tls has a value, transforms to the result of function

if tls has a value, transforms to the result of function

Attributes

Source
IngressSpec.scala

Returns a new data with defaultBackend set to new value

Returns a new data with defaultBackend set to new value

Attributes

Source
IngressSpec.scala
def withIngressClassName(value: String): IngressSpec

Returns a new data with ingressClassName set to new value

Returns a new data with ingressClassName set to new value

Attributes

Source
IngressSpec.scala
def withRules(value: Seq[IngressRule]): IngressSpec

Returns a new data with rules set to new value

Returns a new data with rules set to new value

Attributes

Source
IngressSpec.scala
def withTls(value: Seq[IngressTLS]): IngressSpec

Returns a new data with tls set to new value

Returns a new data with tls set to new value

Attributes

Source
IngressSpec.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product