Show / Hide Table of Contents

Class IngressSpecArgs

IngressSpec describes the Ingress the user wishes to exist.

Inheritance
System.Object
InputArgs
ResourceArgs
IngressSpecArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Networking.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class IngressSpecArgs : ResourceArgs

Properties

View Source

Backend

A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.

Declaration
public Input<IngressBackendArgs> Backend { get; set; }
Property Value
Type Description
Input<IngressBackendArgs>
View Source

IngressClassName

IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated kubernetes.io/ingress.class annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.

Declaration
public Input<string> IngressClassName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Rules

A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.

Declaration
public InputList<IngressRuleArgs> Rules { get; set; }
Property Value
Type Description
InputList<IngressRuleArgs>
View Source

Tls

TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.

Declaration
public InputList<IngressTLSArgs> Tls { get; set; }
Property Value
Type Description
InputList<IngressTLSArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.