上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页
摘要: 查看帮助 一、pod中只有1用户容器 #只有一个容器时,进入时不需要指定容器,因为就是只有一个 # test-pod 为pod名称 kubectl exec -it test-pod -n test -- /bin/sh ###二、pod中有多个用户容器 #-c 指定容器 #当有多个容器时就必须加上 阅读全文
posted @ 2022-10-30 12:52 弩哥++ 阅读(115) 评论(0) 推荐(0) 编辑
摘要: hello world 阅读全文
posted @ 2022-10-30 11:33 弩哥++ 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 一、心里的疑问 k8s创建了pod,pod拉取了nginx 等镜像,然后使用nerdctl images查看到的都是平面管理相关的镜像,那容器里下载的镜像又再哪里可以看见呢,当时这个有这个疑问,然后百度了下,没有找到答案,就先放下了 二、问题解惑 进入官网寻找答案 https://github.co 阅读全文
posted @ 2022-10-28 20:39 弩哥++ 阅读(1012) 评论(0) 推荐(0) 编辑
摘要: 官网文档 https://kubernetes.io/docs/reference/generated/kubectl/kubectl-commands#cp 例如将主机上的index.html文件拷贝到pod容器中替换nginx首页显示 kubectl cp ./index.html -n tes 阅读全文
posted @ 2022-10-28 12:02 弩哥++ 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 注意selector一定要书写正确,否则通过集群IP:端口 或者是节点ip:外部访问端口 都无法访问 apiVersion: v1 kind: Pod metadata: name: test-pod namespace: test labels: environment: stg spec: co 阅读全文
posted @ 2022-10-27 11:57 弩哥++ 阅读(18) 评论(0) 推荐(0) 编辑
摘要: apiVersion: v1 kind: Pod metadata: name: test-pod namespace: test labels: environment: STG spec: containers: - name: my-nginx-container image: nginx:l 阅读全文
posted @ 2022-10-27 11:31 弩哥++ 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 查询当前时间 echo $(date) 查询当前日期,m为月,d为天,注意date后面有一个空格 echo $(date +%Y-%m-%d) 格式化输出日期+时分秒 echo $(date "+%Y-%m-%d %H:%M:%S") 仅查询当前时间的时分秒可以直接使用以下命令 echo $(dat 阅读全文
posted @ 2022-10-26 19:35 弩哥++ 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 背景 在阅读k8s资源配置yaml中,看到command中有-c,如 command: ["/bin/sh","-c","touch /tmp/hello.txt;while true;do /bin/echo $(date +%T) >> /tmp/hello.txt; sleep 3; done 阅读全文
posted @ 2022-10-26 18:45 弩哥++ 阅读(298) 评论(0) 推荐(0) 编辑
摘要: apiVersion: v1 #必选,版本号,例如v1 kind: Pod #必选,资源类型,例如 Pod metadata: #必选,元数据 name: string #必选,Pod名称 namespace: string #Pod所属的命名空间,默认为"default" labels: #自定义 阅读全文
posted @ 2022-10-26 17:34 弩哥++ 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 一、背景 通过pod控制器Deployment创建的一组Pod来提供具有高可用性的服务。虽然每个Pod都会分配一个单独的Pod IP,然而却存在如下两问题: pod重建后,pod的ip会发生变化 pod的ip仅仅是集群内可以访问的虚拟ip,外部无法访问 因此,kubernetes设计了Service 阅读全文
posted @ 2022-10-26 17:09 弩哥++ 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页