Show / Hide Table of Contents

Class IngressClassSpecArgs

IngressClassSpec provides information about the class of an Ingress.

Inheritance
System.Object
InputArgs
ResourceArgs
IngressClassSpecArgs
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 IngressClassSpecArgs : ResourceArgs

Properties

View Source

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.

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

Parameters

Parameters is a link to a custom resource containing additional configuration for the controller. This is optional if the controller does not require extra parameters.

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