Skip to main content

Ingress



Resource Icon

Resource Overview

A Kubernetes resource related to rules that allow inbound connections to reach endpoints defined by the backend

Associated Resources

Parent Resource

Connected Resources

Resource Setting Values

  • service_name : Name of the Ingress resource
  • namespace : Namespace where Ingress resources will be deployed
  • annotations : A key-value used to display necessary information in the Kubernetes system
  • labels : To distinguish objects, the user arbitrarily specifies the desired value
  • tls : Apply TLS
    • hosts : List of hosts included in the TLS certificate
    • secret_name : Naming the Kubernetes Secret Associated with the TLS Certificate
  • ingress_class_name : Name of the Ingress class to connect to
  • host : Hostname address where routing rules will be applied
  • backend : Backend information for routing
    • name : Name of the routing rule
      • path : Path to be connected with the backend
      • path_type : Determines how path matching is interpreted - Prefix, ImplementationSpecific, Exact
      • port : Port number of the service - 1~65535

Reference Materials