Live data from Hacker News

Kong gateway reaches 1.0 GA, now supports service mesh

konghq.com

1–10 of 51 posts

Re: Kong gateway reaches 1.0 GA, now supports service mesh

#3

Great work guys! I see that "Kong’s core router can now route raw TCP traffic." Can you elaborate? What kinds of routing parameters and rules can Kong use to route raw TCP traffic?

Since we now support Service Mesh, any TCP traffic is supported. The full documentation can be found at https://docs.konghq.com/

Re: Kong gateway reaches 1.0 GA, now supports service mesh

#4

Great work guys! I see that "Kong’s core router can now route raw TCP traffic." Can you elaborate? What kinds of routing parameters and rules can Kong use to route raw TCP traffic?

You can define a route to be either L7 ("http", "https") or L4 ("tcp", "tls"). For L7 routes you can use the usual routing parameters that were already available in Kong, like routing by host, by paths (prefix or regex-based) and/or by method. For stream routing, you can route by IP source port, IP destination port and/or by SNI in the case of TLS connections.

Re: Kong gateway reaches 1.0 GA, now supports service mesh

#7

What would be the best way to deploy this with my application in Kubernetes?

There are a few options to deploy Kong as your API Gateway:

Kong can work as an Ingress Controller for your Kubernetes cluster and run plugins for your traffic at the Ingress layer. Refere to the repo for more details: https://github.com/kong/kubernetes-ingress-controller

You can simply deploy it as an application using the Helm chart: https://github.com/helm/charts/tree/master/stable/kong

Re: Kong gateway reaches 1.0 GA, now supports service mesh

#10
post #6

How does 1.0 handle database migrations?

Kong runs at a critical point in any infrastructure. Having any sort of downtime is usually unacceptable.

To avoid downtime due to Kong upgrades, Kong now supports a blue-green deployment method where for two Kong nodes of version A and version A+1 can run together at the same time as the upgrade is being rolled out, and then switching all traffic to A+1.

Post reply on HN