Sobes.tech
Junior — Middle

Can you explain the differences between routing in OpenShift and Ingress in Kubernetes?

sobes.tech AI

Answer from AI

In Kubernetes, Ingress and OpenShift Route are mechanisms for organizing external access to services within the cluster, but they have differences:

  • Ingress (Kubernetes) — a standard API object that describes rules for routing HTTP/HTTPS traffic to services. An Ingress requires an Ingress Controller (e.g., NGINX, Traefik) that implements these rules.

  • Route (OpenShift) — an extension of Kubernetes specific to OpenShift. It is managed by the built-in OpenShift router (HAProxy), which is automatically created and configured. Route provides an easier way to expose services with additional features like automatic TLS, OAuth integration, and wildcard support.

Key differences:

  • Route is more integrated into OpenShift and easier to use in this environment.
  • Ingress is more universal and standard, requiring configuration of a controller.
  • Route supports additional security and traffic management features specific to OpenShift.

Example Route in OpenShift:

apiVersion: route.openshift.io/v1
kind: Route
metadata:
  name: example-route
spec:
  to:
    kind: Service
    name: example-service
  tls:
    termination: edge

Ingress in Kubernetes looks like:

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: example-ingress
spec:
  rules:
  - host: example.com
    http:
      paths:
      - path: /
        pathType: Prefix
        backend:
          service:
            name: example-service
            port:
              number: 80
Can you explain the differences between routing in… - sobes.tech