Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vs4vijay/kong
- Owner: vs4vijay
- License: mit
- Created: 2020-07-17T12:19:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T17:49:47.000Z (about 1 year ago)
- Last Synced: 2023-12-15T18:56:32.388Z (about 1 year ago)
- Topics: api, api-gateway, api-management, k8s, katacoda, katacoda-scenarios, kong, kong-api, kong-api-gateway, kong-gateway, kong-plugin, kubernetes, kubernetes-deployment
- Language: Shell
- Homepage:
- Size: 342 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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-lessInstallation:
```shell
kubectl apply -f https://bit.ly/k4k8skubectl 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-servicekubectl apply -f - <