Class IngressArgs
- java.lang.Object
-
- com.pulumi.resources.InputArgs
-
- com.pulumi.resources.ResourceArgs
-
- com.pulumi.kubernetes.networking.v1beta1.inputs.IngressArgs
-
public final class IngressArgs extends com.pulumi.resources.ResourceArgs
Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc. This resource waits until its status is ready before registering success for create/update, and populating output properties from the current state of the resource. The following conditions are used to determine whether the resource creation has succeeded or failed: 1. Ingress object exists. 2. Endpoint objects exist with matching names for each Ingress path (except when Service type is ExternalName). 3. Ingress entry exists for '.status.loadBalancer.ingress'. If the Ingress has not reached a Ready state after 10 minutes, it will time out and mark the resource update as Failed. You can override the default timeout value by setting the 'customTimeouts' option on the resource.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
IngressArgs.Builder
-
Field Summary
Fields Modifier and Type Field Description static IngressArgs
Empty
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<com.pulumi.core.Output<java.lang.String>>
apiVersion()
static IngressArgs.Builder
builder()
static IngressArgs.Builder
builder(IngressArgs defaults)
java.util.Optional<com.pulumi.core.Output<java.lang.String>>
kind()
java.util.Optional<com.pulumi.core.Output<ObjectMetaArgs>>
metadata()
java.util.Optional<com.pulumi.core.Output<IngressSpecArgs>>
spec()
java.util.Optional<com.pulumi.core.Output<IngressStatusArgs>>
status()
-
-
-
Field Detail
-
Empty
public static final IngressArgs Empty
-
-
Method Detail
-
apiVersion
public java.util.Optional<com.pulumi.core.Output<java.lang.String>> apiVersion()
- Returns:
- APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
-
kind
public java.util.Optional<com.pulumi.core.Output<java.lang.String>> kind()
- Returns:
- Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
-
metadata
public java.util.Optional<com.pulumi.core.Output<ObjectMetaArgs>> metadata()
- Returns:
- Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
-
spec
public java.util.Optional<com.pulumi.core.Output<IngressSpecArgs>> spec()
- Returns:
- Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
-
status
public java.util.Optional<com.pulumi.core.Output<IngressStatusArgs>> status()
- Returns:
- Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
-
builder
public static IngressArgs.Builder builder()
-
builder
public static IngressArgs.Builder builder(IngressArgs defaults)
-
-