前言
上一章内容介绍了如何配置启动K8S集群服务,本章将介绍如何以master节点开启一个nginx服务
一、启动nginx
# 1.部署nginx
[root@master ~]# kubectl create deployment nginx --image=nginx:1.14-alpine
# 2.暴露端口
[root@master ~]# kubectl expose deployment nginx --port=80 --type=Nod
上一章内容介绍了如何配置启动K8S集群服务,本章将介绍如何以master节点开启一个nginx服务
# 1.部署nginx
[root@master ~]# kubectl create deployment nginx --image=nginx:1.14-alpine
# 2.暴露端口
[root@master ~]# kubectl expose deployment nginx --port=80 --type=Nod