Skip to content

Kong Ingress Controller (OSS) #1122

Answered by jr-dimedis
jr-dimedis asked this question in Q&A
Discussion options

You must be logged in to vote

I successfully installed Kong Ingress Controller.

I used the official Kong chart kong/ingress, because I had trouble with the Bitnami chart and after some investigation using the Kong chart was straight forward.

https://github.com/Kong/charts/blob/main/charts/ingress/README.md

These are my values to make it work with Hetzner load balancer:

k8s-kong.tf

# Docs: https://github.com/Kong/charts/blob/main/charts/ingress/README.md

resource "helm_release" "kong" {
  name       = "kong"
  repository = "https://charts.konghq.com"
  chart      = "ingress"
  namespace  = "kong"
  version    = "0.10.1"
  values     = [file("yaml/kong/helm-kong.yml")]
  create_namespace = true
}

yaml/kong/helm-kong.yml

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@tobiasehlert
Comment options

@jr-dimedis
Comment options

Answer selected by jr-dimedis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants