Exposing services outside the cluster using Kubernetes Ingress
The OSM ingress guide is a walkthrough on exposing HTTP and HTTPS routes on services within the mesh externally using the Kubernetes Ingress API.
Prerequisites
- An instance of OSM must be running in the cluster.
- The service needing to be exposed using Ingress needs to belong to a namespace monitored by OSM. Refer to the Readme for details.
- The ingress resource must belong to the same namespace as the backend service.
- A sidecar must be injected to the pod hosting the service, either using automatic sidecar injection or by manually annotating the pod spec for sidecar injection. Refer to the Readme for details.
- An ingress controller must be running in the cluster.
What is ingress?
Ingress refers to providing external access to services inside the cluster, typically HTTP/HTTPS services. In kubernetes, Ingress consists of an Ingress API resource and an Ingress controller. The Kubernetes Ingress API manifest consists of declarations of how external clients are routed to a service inside the cluster, and the Ingress controller executes the routing declarations specified in the manifest.
Why do you need ingress on your cluster?
Initially, when you group pods under a service, this service is only accessible inside of the cluster. One option, of course, is to use a load balancer. However, the downside of this approach is that each service would require a new hosted load balancer, meaning more consumption of cloud resources.
Ingress allows you to easily establish rules for traffic routing without creating several load balancers. The Ingress Controller is built using reverse proxies, allowing it to act as a load balancer. Though the Ingress Controller requires a service to expose them to services outside of the cluster, this will be the only entrypoint that outside services need to access all the internal services on your cluster, as the Ingress Controller will redirect this traffic to the internal pods as specified in the Ingress Manifest.
What types of ingress are supported by OSM v0.9.0?
Currently, OSM supports HTTP ingress. HTTPS ingress support is experimental, with support for one-way TLS authentication to backend services.
Supported Kubernetes Ingress API versions
Since OSM only supports Kubernetes cluster versions >= v1.18.0, the API version for the Kubernetes Ingress resource must be precisely one of networking.k8s.io/v1
or networking.k8s.io/v1beta1
. OSM controller dynamically negotiates the Ingress API versions served by the Kubernetes API server and enables the same versions to be served in OSM.
Note: If either of these versions are not served by the Kubernetes API server for some reason, OSM controller will exit on failing to initialize its ingress client. This likely indicates an unsupported Kubernetes version on the cluster.
Ingress controller compatibility
Ingress in OSM has been tested with the following ingress controllers:
Other ingress controllers might also work as long as they use the Kubernetes Ingress API. In addition, ingress controllers must allow provisioning a custom root certificate for backend server certificate validation while using HTTPS ingress.
Configuring Ingress
Enabling HTTP or HTTPS Ingress
By default, OSM configures HTTP as the backend protocol for services when an ingress resource is applied with a backend service that belongs to the mesh. A mesh-wide configuration setting in OSM’s osm-mesh-config
MeshConfig
custom resource enables configuring ingress with the backend protocol to be HTTPS.
HTTP ingress
HTTP based ingress is provisioned in OSM by default.
HTTPS ingress
HTTPs Ingress is disabled by default when OSM is installed. However, HTTPS ingress can be enabled by updating the osm-mesh-config
custom resource in osm-controller
's namespace (osm-system
by default).
Patch the osm-mesh-config
resource to set useHTTPSIngress
to true
.
# Replace osm-system with osm-controller's namespace if using a non default namespace
kubectl patch meshconfig osm-mesh-config -n osm-system -p '{"spec":{"traffic":{"useHTTPSIngress":true}}}' --type=merge
Note: Enabling HTTPS ingress will disable HTTP ingress.
Disabling HTTP or HTTPS Ingress
HTTP ingress
HTTP ingress can be disabled by enabling HTTPS ingress.
HTTPs ingress
Patch the MeshConfig by setting useHTTPSIngress:false.
Note: Disabling HTTPS ingress will enable HTTP ingress.
# Replace osm-system with osm-controller's namespace if using a non default namespace
kubectl patch meshconfig osm-mesh-config -n osm-system -p '{"spec":{"traffic":{"useHTTPSIngress":false}}}' --type=merge
Ignoring an ingress resource
When an ingress resource is applied in a namespace that is monitored by OSM, OSM control plane will process the resource and configure the corresponding backends specified in the ingress resource based on the ingress rules. In some scenarios, it may be required to inform the OSM control plane to ignore certain ingress resources, such as when an ingress resource is only meant to program an ingress controller and not an application backend managed by OSM. An ingress resource can be ignored using the openservicemesh.io/ignore
label.
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: httpbin-ingress
namespace: httpbin
labels:
openservicemesh.io/ignore: "true"
Note: The value applied to this label does not matter.
How it works
Exposing an HTTP or HTTPS service using Ingress
A service can expose HTTP or HTTPS routes outside the cluster using Kubernetes Ingress along with an ingress controller. Once an ingress resource is configured to expose HTTP routes outside the cluster to a service within the cluster, OSM will configure the sidecar proxy on pods to allow ingress traffic to the service based on the ingress routing rules defined by the Kubernetes Ingress resource.
Note:
- This behavior opens up HTTP-based access to any client that is not a part of the service mesh, not just ingress.
- The ingress resource that allows external HTTP access to a particular service must be in the same namespace as that service.
HTTP path matching semantics
The Kubernetes Ingress API allows specifying a pathType for each HTTP path
specified in an ingress rule. OSM enforces different HTTP path matching semantics depending on the pathType
attribute specified. This allows OSM to operate with a number of different ingress controllers.
The following path matching semantics correspond to the value of the pathType
attribute:
-
Exact
: With this path type, the:path
header in the HTTP request is matched exactly to thepath
specified in the ingress rule. -
Prefix
: With this path type, the:path
header in the HTTP request is matched as an element wise prefix of thepath
specified in the ingress rule, as defined in the Kubernetes ingress API specification. -
ImplementationSpecific
: With this path type, the:path
header in the HTTP request is matched differently depending on thepath
specified in the ingress rule. If the specifiedpath
~looks like a regex~ (has one of the following characters:^$*+[]%|
), the:path
header in the HTTP request is matched against thepath
specified in the ingress rule as a regex match using the Google RE2 regex syntax. If the specifiedpath
~does not look like a regex~, the:path
header in the HTTP request is matched as a string prefix of the specifiedpath
in the ingress rule.
By default, if the pathType
attribute is not set for a path
in an ingress rule, OSM will default the pathType
as ImplementationSpecific
.
Sample demo
HTTP traffic with ingress
The following demo sends a request from an external IP to a httpbin service inside the cluster.
-
Install OSM.
osm install
-
Install the nginx ingress controller
-
Deploy the
httpbin
service into thehttpbin
namespace after enrolling its namespace to the mesh. Thehttpbin
service runs on port14001
.# Create the httpbin namespace kubectl create namespace httpbin # Add the namespace to the mesh osm namespace add httpbin # Deploy httpbin service in the httpbin namespace kubectl apply -f docs/example/manifests/samples/httpbin/httpbin.yaml -n httpbin
Confirm the
httpbin
service and pods are up and running.$ kubectl get pods -n httpbin NAME READY STATUS RESTARTS AGE httpbin-74677b7df7-zzlm2 2/2 Running 0 11h
$ kubectl get svc -n httpbin NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE httpbin ClusterIP 10.0.22.196 <none> 14001/TCP 11h
-
Apply an ingress configuration yaml to expose the HTTP path
/status/200
on thehttpbin
service withkubectl apply -f
:Note: Use the appropriate ingress resource based on the desired API version.
Ingress v1 resource:
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: httpbin-ingress namespace: httpbin spec: ingressClassName: nginx rules: - http: paths: - path: /status/200 pathType: ImplementationSpecific # Must be one of: Exact, Prefix, ImplementationSpecific backend: service: name: httpbin port: number: 14001
Ingress v1beta1 resource:
apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: httpbin-ingress namespace: httpbin annotations: kubernetes.io/ingress.class: nginx spec: rules: - http: paths: - path: /status/200 pathType: ImplementationSpecific # Must be one of: Exact, Prefix, ImplementationSpecific backend: serviceName: httpbin servicePort: 14001
Confirm that the httpbin-ingress has been successfully deployed.
$ kubectl get ingress -n httpbin NAME CLASS HOSTS ADDRESS PORTS AGE httpbin-ingress <none> * 20.72.132.186 80 11h
-
Confirm that a request to the httpbin service from the external IP address of the Ingress resource succeeds (in this case, the external address would be
20.72.132.186
)curl http://<external-ip>/status/200
-
Update the existing ingress with a host specified by applying the following yaml, and confirm that the request succeeds:
Note: Use the appropriate ingress resource based on the desired API version.
Ingress v1 resource:
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: httpbin-ingress namespace: httpbin spec: ingressClassName: nginx rules: - host: httpbin.com http: paths: - path: /status/200 pathType: ImplementationSpecific # Must be one of: Exact, Prefix, ImplementationSpecific backend: service: name: httpbin port: number: 14001
Ingress v1beta1 resource:
apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: httpbin-ingress namespace: httpbin annotations: kubernetes.io/ingress.class: nginx spec: rules: - host: httpbin.com http: paths: - path: /status/200 pathType: ImplementationSpecific # Must be one of: Exact, Prefix, ImplementationSpecific backend: serviceName: httpbin servicePort: 14001
curl http://<external-ip>/status/200 -H "Host: httpbin.com"
Sample Ingress Configurations
The following section describes sample ingress configurations used to expose services managed by OSM outside the cluster. The configuration might differ based on the ingress controller being used.
The example configurations describe how to expose HTTP and HTTPS routes for the httpbin
service running on a pod with the service account httpbin
on port 14001
in the httpbin
namespace, outside the cluster. The ingress configuration will expose the HTTP path /status/200
on the httpbin
service.
Since OSM uses its own root certificate, the ingress controller must be provisioned with OSM’s root certificate to be able to authenticate the certificate presented by backend servers when using HTTPS ingress. With Tresor
as the certificate provider, OSM stores the CA root certificate in a Kubernetes secret named osm-ca-bundle
with the key ca.crt
in the namespace OSM is deployed (osm-system
by default). When using other certificate providers such as cert-manager.io
or Hashicorp Vault
, the osm-ca-bundle
secret must be created by the user with the base64 encoded root certificate stored as the value to the ca.crt
attribute in the secret’s data.
Prerequisites
- Install nginx ingress controller
- Specify the ingress controller as nginx using the annotation
kubernetes.io/ingress.class: nginx
.
For HTTPS ingress, additional annotations are required.
- Specify the backend protocol as HTTPS using the annotation
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
. - Specify the SAN to use to verify the HTTPS backend using the annotation
nginx.ingress.kubernetes.io/configuration-snippet
. - Specify the secret corresponding to the root certificate using the annotation
nginx.ingress.kubernetes.io/proxy-ssl-secret
. - Specify the passing of TLS Server Name Indication (SNI) to proxied HTTPS backends using the annotation
nginx.ingress.kubernetes.io/proxy-ssl-server-name
. This is optional. - Enable SSL verification of backend service using the annotation
nginx.ingress.kubernetes.io/proxy-ssl-verify
.
Examples
-
HTTP ingress resource with wildcard host:
apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: httpbin-ingress namespace: httpbin annotations: kubernetes.io/ingress.class: nginx spec: rules: - http: paths: - path: /status/200 backend: serviceName: httpbin servicePort: 14001
Accessing the service:
curl http://<external-ingress-ip>/status/200
-
HTTP ingress resource with host specified:
apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: httpbin-ingress namespace: httpbin annotations: kubernetes.io/ingress.class: nginx spec: rules: - host: httpbin.com http: paths: - path: /status/200 backend: serviceName: httpbin servicePort: 14001
Accessing the service:
curl http://<external-ingress-ip>/status/200 -H "Host: httpbin.com"
-
HTTPS ingress with host specified:
Here, the requests to the backend are proxied over HTTPS. As a result, the root CA certificate used to verify the certificate presented by the backend must be configured, along with other SSL parameters.
apiVersion: networking.k8s.io/v1beta1 kind: Ingress metadata: name: httpbin-ingress namespace: httpbin annotations: kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/backend-protocol: "HTTPS" # proxy_ssl_name for a service is of the form <service-account>.<namespace>.cluster.local nginx.ingress.kubernetes.io/configuration-snippet: | proxy_ssl_name "httpbin.httpbin.cluster.local"; # k8s secret with CA certificate stored with key ca.crt nginx.ingress.kubernetes.io/proxy-ssl-secret: "osm-system/osm-ca-bundle" nginx.ingress.kubernetes.io/proxy-ssl-server-name: "on" # optional nginx.ingress.kubernetes.io/proxy-ssl-verify: "on" spec: rules: - host: httpbin.com http: paths: - path: /status/200 backend: serviceName: httpbin servicePort: 14001
Accessing the service:
curl http://<external-ingress-ip>/status/200 -H "Host: httpbin.com"
Other Ingress configurations
Demos for using OSM with other Ingress resources, such as Azure Application Gateway and Gloo Edge, can be found in the demos folder
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.