如何在Kubernetes里创建一个Nginx应用
使用命令行kubectl run --image=nginx nginx-app --port=80 创建一个名为nginx-app的应用
结果: deployment.apps/nginx-app created
使用命令行kubectl get pods查看创建结果,状态已经为running:
使用命令行kubectl describe pods查看pod明细:
把pod id记下来: nginx-app-f75d46bd9-q6c76
使用该pod id可以执行一些命令:
- kubectl exec nginx-app-f75d46bd9-q6c76 ps aux
- kubectl describe pod nginx-app-f75d46bd9-q6c76
- kubectl logs nginx-app-f75d46bd9-q6c76
要获取更多Jerry的原创文章,请关注公众号"汪子熙":
相关推荐
nginxs 2020-11-14
Guanjs0 2020-11-13
小木兮子 2020-11-11
yserver 2020-11-11
ssihc0 2020-11-11
windle 2020-11-10
HanksWang 2020-11-10
liuchen0 2020-11-10
Freshairx 2020-11-10
ccschan 2020-11-10
liwf 2020-11-10
Guanjs0 2020-11-09
AderStep 2020-11-09
zrtlin 2020-11-09
mqfcu 2020-11-10
windle 2020-10-29