-
一个简单的k8s Python示例:k8s-python-example
资源介绍
k8s-python-example
范围
这是一个小型的python应用程序,显示了在Kubernetes上运行应用程序的不同方法。
本地测试
克隆下来这个repostitory,确认你有docker安装。
构建docker容器: docker build -t k8s-python-example .
在本地运行容器: docker run -it -p 8080:8080 k8s-python-example:latest
检查您应该看到测试页面
部署到Kubernetes
使用kubectl部署堆栈
kubectl apply -f k8s/pythonapp-deployment.yaml
kubectl apply -f k8s/pythonapp-service.yaml
kubectl apply -f k8s/nginx-deployment.yaml
Cop