このページは、まだ日本語ではご利用いただけません。翻訳中です。
旧バージョンのドキュメントを参照しています。
最新のドキュメントはこちらをご参照ください。
Kong for Kubernetes
Kong for Kubernetes is an Ingress Controller based on the
Open-Source Kong Gateway. It consists of two components:
-
Kong the Open-Source Gateway
-
Controller a daemon process that integrates with the Kubernetes platform and configures Kong.
Installers
Kong for Kubernetes can be installed using an installer of
your choice. After the installation is complete, see the getting started tutorial to learn more.
YAML manifests
Kustomize
Helm
You can install Kong Ingress Controller with a single kubectl apply
for testing purposes:
$ kubectl apply -f https://raw.githubusercontent.com/Kong/kubernetes-ingress-controller/v2.7.x/deploy/single/all-in-one-dbless.yaml
There are additional instructions for the following platforms:
Kustomize manifests are provided for illustration purposes only and are not officially supported by Kong.
There is no guarantee of backwards compatibility or upgrade capabilities for our Kustomize manifests.
For a production setup with Kong support, use the Helm chart.
-
Install Kong for Kubernetes using Kustomize:
kubectl apply -k github.com/kong/kubernetes-ingress-controller/config/base
You can use the above URL as a base kustomization and build on top of it
to make it suite better for your cluster and use-case.
-
Kubernetes exposes the proxy through a Kubernetes service. Run the following commands to store the load balancer IP address in a variable named PROXY_IP
:
HOST=$(kubectl get svc --namespace kong kong-proxy -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
PORT=$(kubectl get svc --namespace kong kong-proxy -o jsonpath='{.spec.ports[0].port}')
export PROXY_IP=${HOST}:${PORT}
echo $PROXY_IP
-
Install Kong Ingress Controller and Kong Gateway with Helm:
$ helm repo add kong https://charts.konghq.com
$ helm repo update
$ helm install kong kong/ingress -n kong --create-namespace
-
Kubernetes exposes the proxy through a Kubernetes service. Run the following commands to store the load balancer IP address in a variable named PROXY_IP
:
HOST=$(kubectl get svc --namespace kong kong-gateway-proxy -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
PORT=$(kubectl get svc --namespace kong kong-gateway-proxy -o jsonpath='{.spec.ports[0].port}')
export PROXY_IP=${HOST}:${PORT}
echo $PROXY_IP