Skip to content

Latest commit

 

History

History
230 lines (192 loc) · 8.22 KB

ingress-to-edge-relationship.md

File metadata and controls

230 lines (192 loc) · 8.22 KB

Ingress to Edge Relationship

This ingress controller aims to take the ingress spec and implement each specified concept into ngrok edges. The concept of an ngrok Edge is documented more here. This document aims to explain how multiple ingress objects with rules and hosts that overlap combine to form edges in the ngrok API.

In Short:

  • a host correlates directly to an edge
  • rules spread across ingress objects with matching hosts get merged into the same edge
  • annotations on an ingress apply only to the routes in the rules in that ingress if possible

Types of Ingress

This Kubernetes "Types of Ingress" Doc breaks down a few common ingress examples. We'll use these examples to explain how the ingress controller will handle them and what the end result edge configurations are.

Single Service Ingress

There are existing Kubernetes concepts that allow you to expose a single Service (see alternatives). You can also do this with an Ingress by specifying a default backend with no rules.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: test-ingress
spec:
  defaultBackend:
    service:
      name: test
      port:
        number: 80

While not implemented yet, when completed, this style of ingress should allow exposing a service across all edges configured by the controller. Without any other ingress objects with hosts configured though, this ingress would do nothing as there is no edge and host to attach to.

Simple Fanout

A fanout configuration routes traffic from a single IP address to more than one Service, based on the HTTP URI being requested. An Ingress allows you to keep the number of load balancers down to a minimum.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: simple-fanout-example
spec:
  rules:
  - host: foo.bar.com
    http:
      paths:
      - path: /foo
        pathType: Prefix
        backend:
          service:
            name: service1
            port:
              number: 4200
      - path: /bar
        pathType: Prefix
        backend:
          service:
            name: service2
            port:
              number: 8080

This configuration would produce a single edge with two routes.

  • edge: foo.bar.com
    • route: /foo -> service1:4200
    • route: /bar -> service2:8080

If another ingress object like this was created

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: simple-fanout-example-2
spec:
  rules:
  - host: foo.bar.com
    http:
      paths:
      - path: /baz
        pathType: Prefix
        backend:
          service:
            name: service3
            port:
              number: 8080

The edge would be updated to have three routes.

  • edge: foo.bar.com
    • route: /foo -> service1:4200
    • route: /bar -> service2:8080
    • route: /baz -> service3:8080

Ingress rules with the same host are merged into the same edge.

Name-based Virtual Hosting

Name-based virtual hosting is a common way to implement virtual hosting on a single IP address. Each host name is associated with a distinct IP address, and the DNS resolver associates a given host name with its corresponding IP address(es). The Ingress resource does not require any special support for name-based virtual hosting, but it does require that the DNS resolver be configured to return the correct IP address for a given host name.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: name-virtual-host-ingress
spec:
  rules:
  - host: foo.bar.com
    http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: service1
            port:
              number: 80
  - host: bar.foo.com
    http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: service2
            port:
              number: 80

This configuration would produce two edges with one route each.

  • edge: foo.bar.com
    • route: / -> service1:80
  • edge: bar.foo.com
    • route: / -> service2:80

No Host

The kubernetes spec specifies:

If you create an Ingress resource without any hosts defined in the rules, then any web traffic to the IP address of your Ingress controller can be matched without a name based virtual host being required.

This only can be applied to ingress controllers that create static IPs to route to. With ngrok, an Edge always has a hostname, otherwise it's not routable. If a rule with no host is created, it will be dropped.

Annotations

The current annotations are being moved to a new Module CRD now. These docs will be updated when it's finished. The approach and structure will be the same, just showing how modules apply to routes.

Annotations are created and applied at the ingress object level. However, from the section above, multiple ingresses can combine and be shared to form multiple edges. When using annotations that apply specifically to routes, the annotations on the ingress apply to all routes, but routes for multiple edges across different ingresses don't have to have the same annotations or modules.

So while annotations are limited to being applied to the whole ingress object, and we'd like to apply different route module annotations to different routes in 1 edge, we can leverage the fact that multiple ingresses can be combined to form an edge if the rules hosts match, but each annotation only applies to those routes in the ingress object they came from.

apiVersion: ingress.k8s.ngrok.com/v1alpha1
kind: NgrokModuleSet
metadata:
  name: example-module-set-1
modules:
  headers:
    add:
      X-SEND-TO-CLIENT: Value1
---
apiVersion: ingress.k8s.ngrok.com/v1alpha1
kind: NgrokModuleSet
metadata:
  name: example-module-set-2
modules:
  headers:
    add:
      X-SEND-TO-CLIENT: Value2
---

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: example-header-add-1
  annotations:
    k8s.ngrok.com/modules: "example-module-set-1"
spec:
  rules:
  - host: foo.bar.com
    http:
      paths:
      - path: /foo
        pathType: Prefix
        backend:
          service:
            name: service1
            port:
              number: 4200
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: example-header-add-2
  annotations:
    k8s.ngrok.com/modules: "example-module-set-2"
spec:
  rules:
  - host: foo.bar.com
    http:
      paths:
      - path: /bar
        pathType: Prefix
        backend:
          service:
            name: service2
            port:
              number: 8080

This configuration would produce a single edge with two routes. Each route has a different http response header module

  • edge: foo.bar.com
    • route: /foo -> service1:4200
      • module: response-headers-add -> {"X-SEND-TO-CLIENT": "Value1"}
    • route: /bar -> service2:8080
      • module: response-headers-add -> {"X-SEND-TO-CLIENT": "Value2"}

Collisions and Errors

Because the controller combines multiple ingress objects into a combined model that represents a set of edges, it is possible to have configurations collide and overwrite each other. When possible, the controller aims to drop the minimal amount of configuration rather than erroring to keep the majority of the edges and routes up and running when there is a configuration error. The controller will then emit logs and events warning of the bad configuration.

Rule Paths

If multiple ingress objects have rules with the same host and path, the controller will drop whichever one it sees first because it will merge over the route path on that edge. Only 1 host and path combination can exist on an edge.

NgrokModuleSets

The NgrokModuleSet CRD is a collection of route module configurations. When set on an ingress object, it applies to all routes on that ingress object, but not routes on other ingress objects that may be combined to form the same edge. You can set multiple module sets on an ingress object. The controller will merge the modules from all of the module sets together. If there are any collisions, the controller will drop the module from the first set.