kubectl get pods -o wide
使用nslookup查看这些Pod的DNS
123 |
/ # nslookup web-0.nginxServer: 10.0.0.10Address 1: 10.0.0.10 kube-dns.kube-system.svc.cluster.local |
用kubectl run来创建一个CronJob:
1 |
大专栏 kubernetes 常用命令code">
kubectl run hello --schedule="*/1 * * * *" --restart=OnFailure --image=busybox -- /bin/sh -c "date; echo Hello from the Kubernetes cluster" |
三种容器类型
- 静态容器组:bare pod, IP和Hostname恒定;
- 有状态伸缩组: Deployment, IP和Hostname恒定,支持IP池;
- 无状态伸缩组: StatefulSets, 支持IP池,IP随机分配,灵活度更高。
斜体
黑体
k8s容器命名规则
原文地址:https://www.cnblogs.com/wangziqiang123/p/11718124.html
时间: 2024-10-05 23:54:16