开发的生活有了Docker之后,一切都变得爽YY了。可以有更多时间回家陪老人孩子。下面介绍下如何使用Docker和k8s部署Kong。

Docker部署Kong脚本:

1、安装Docker

yum install docker;systemctl enable docker;systemctl start docker 

2、创建kong-net网络

docker network create kong-net 

3、安装postgres数据库

docker run -d --name kong-database --network=kong-net \

-p 5432:5432 \

-e "POSTGRES_USER=kong" \

-e "POSTGRES_DB=kong" postgres:9.6 

4、初始化kong数据库

docker run --rm --network=kong-net \

-e "KONG_DATABASE=postgres" \

-e "KONG_PG_HOST=kong-database" \

-e "KONG_CASSANDRA_CONTACT_POINTS=kong-database"  \

kong:0.13.1-centos  kong migrations up 

5、启动kong

docker run -d --name kong --network=kong-net \

-e "KONG_DATABASE=postgres" \

-e "KONG_PG_HOST=kong-database" \

-e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \

-e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \

-e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \

-e "KONG_PROXY_ERROR_LOG=/dev/stderr" \

-e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \

-e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \

-p 8000:8000 -p 8443:8443 -p 8001:8001 -p 8444:8444 \

kong:0.13.1-centos  

6、 启动kong-dashboard/konga

docker run --rm -p 8080:8080 --network=kong-net \

pgbi/kong-dashboard  start --kong-url http://kong:8001 

7.、UI管理,konga也是个不错的选择。

参考:https://github.com/pantsel/konga

使用k8s部署:待续

转载于:https://my.oschina.net/u/1404949/blog/3039449

Logo

K8S/Kubernetes社区为您提供最前沿的新闻资讯和知识内容

更多推荐