Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vs4vijay/kong

🦍 Kong API Gateway
https://github.com/vs4vijay/kong

api api-gateway api-management k8s katacoda katacoda-scenarios kong kong-api kong-api-gateway kong-gateway kong-plugin kubernetes kubernetes-deployment

Last synced: about 2 months ago
JSON representation

🦍 Kong API Gateway

Awesome Lists containing this project

README

        

# kong

Try at KataCode: https://katacoda.com/vs4vijay/scenarios/kong-with-kubernetes

## Getting Start

### Kong with Docker

- Run Kong with Postgres DB:
```
docker-compose up
```
- Run with Konga UI:
```
docker-compose -f docker-compose.yml -f docker-compose.konga.yml up
```
- Stop Kong
```
docker-compose down
```

### Kong with Kubernetes

- Acts as north-south traffic gateway
- Declarative configuration
- DB-less

Installation:
```shell
kubectl apply -f https://bit.ly/k4k8s

kubectl get services -n kong

export PROXY_IP=$(kubectl get -o jsonpath="{.status.loadBalancer.ingress[0].ip}" service -n kong kong-proxy)
```

Try Sample Service:
```shell
kubectl apply -f https://bit.ly/echo-service

kubectl apply -f - <