K8S

1.什么是Kubernetes?

http://www.dockone.io/article/932

https://blog.csdn.net/kingboyworld/article/details/80966107

2.如何安装?

Windows下载地址 https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/windows/amd64/kubectl.exe

将下载的文件加入环境变量后就可以使用

3.如何使用?

3.1kubeconfig的用法?

https://www.jianshu.com/p/99853cac56b8

举例说明: kubectl --kubeconfig config_windtest proxy --port 8001

使用已配置的config_windtest文件使server监听在本地的8001端口上

启动之后就可以访问http://localhost:8001/api/v1/namespaces/kube-system/services/kubernetes-dashboard/proxy/#!/node?namespace=default

3.2如何部署?

首先需要一个kube config文件 还有一个yaml文件

然后使用命令

kubectl --kubeconfig {config} apply -f {config.yaml}

3.3如何查看Log

kubectl --kubeconfig {config} log {pod} -f --timestamps (-f=follow --timestamps=显示时间戳)

3.4如何打开BASH?

kubectl --kubeconfig {config} exec -it {pod} bash

3.5获取pods

Kubectl --kubeconfig {config} get pods

posted on 2020-10-10 16:51  jueyuanfengsheng  阅读(126)  评论(0编辑  收藏  举报