Ingress
Ingress
The ingress resource allows you to expose services in Kubernetes and Nomad tasks to the local machine.
It also allows you to expose applications that are running to the local machine to a Kubernetes or Nomad cluster.
Attributes
Port port
required
type: int
If the application to be exposed exists on the target then this is the port that will be opened on the local machine that will direct traffic to the remote service.
If the application exists on the local machine then this is the port where the application is running.
Target target
required
type: block
TrafficTarget
The target for the ingress.
ExposeLocal expose_local
type: bool
If set to `true` a service running on the local machine will be exposed to the target cluster. If `false` then a service running on the target cluster will be exposed to the local machine.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Meta ID meta.id
string
The full ID of the resource e.g. `resource.type.name`. This is computed from the full resource path:
Meta Type meta.type
string
The type of the resource. This taken from the type label of the resource definition.
Meta Name meta.name
string
The name of the resource. This taken from the name label of the resource definition.
IngressID ingress_id
type: string
The unique identifier for the created ingress.
LocalAddress local_address
type: string
The full address where the exposed application can be reached from the local network.
Generally this is the local ip address of the machine running Jumppad and the port where the application is exposed.
RemoteAddress remote_address
type: string
The address of the exposed service as it would be rechable from the target cluster.
This is generally a kubernetes service reference and port or for Nomad a rechable IP address and port.
TrafficTarget
Traffic defines either a source or a destination block for ingress traffic
Attributes
A reference to the `nomad_cluster` or `kubernetes_cluster` resource.
Config config
required
type: map[string]string
The configuration parameters for the ingress, configuration parameters differ depending on the target type.
Port port
type: int
The numerical reference for the target service port.
Either port
or named_port
must be specified.
NamedPort named_port
type: string
The string reference for the target service port.
Either port
or named_port
must be specified.
Computed Attributes
These attributes are computed when the config is parsed and applied, and are therefore only known at parsetime or runtime.
Last updated