87、k8s之污点

node 亲和性----nodename—nodeSelector

​ 软策略和硬策略

pod:亲和性

​ 反亲和性

标签------>node节点的标签比app:nginx1标签优先级高

-------------------------------以上总结------------------------------------------

一、污点

查看master01 节点上的污点
[root@master01 ~]# kubectl describe nodes master01 
Taints:             node-role.kubernetes.io/master:NoSchedule
在master01节点上添加污点
[root@master01 ~]#kubectl taint node master01 node-role.kubernetes.io/master:NoSchedule

1.1、污点的作用:

污点:一旦节点上有污点的标签,那么调度器在部署pod的时候会避开这些有污点标签的节点。

1.2、污点的格式:

key:effectkey=value:true

例子:

[root@master01 ~]# kubectl describe taint node node01 test1=1:effect
[root@master01 ~]# kubectl describe taint node node01 test1:effect

1.3、effect污点的类型

污点的类型有三种:

1、NoSchedule:节点上一旦有这个污点,调度器是不会把pod部署在该节点上的。污点–不调度在这个节点上

2、PreferNoSchedule:尽量避免把pod部署在该节点。尽量不部署污点。污点—不优先把节点布置在此节点上

3、NoExecute:调度器不仅不会把pod部署在该节点,而且会把该节点上的pod驱逐到其他节点上。

1、删除master01上污点
[root@master01 ~]# kubectl taint node master01 node-role.kubernetes.io/master:NoSchedule-
2、添加污点
[root@master01 ~]# kubectl taint node master01 test1=1:NoSchedule      ##不调度pod在此节点
node/master01 tainted
[root@master01 ~]# kubectl taint node node01 test1=2:PreferNoSchedule  ##尽量不调度pod在此节点
node/node01 tainted
[root@master01 ~]# kubectl taint node node02 test1=3:NoExecute           ##不调度在此节点,且驱逐此节点上的pod
node/node02 tainted[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22查看布置情况发现都在node01上[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 created
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                     READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-654cb56c4-5nxrp   1/1     Running   0          9s    10.244.1.124   node01   <none>           <none>
nginx1-654cb56c4-ml2hn   1/1     Running   0          9s    10.244.1.125   node01   <none>           <none>
nginx1-654cb56c4-qt8bm   1/1     Running   0          9s    10.244.1.126   node01   <none>           <none>
3、修改节点上污点
[root@master01 k8s-yaml]# kubectl taint node node01 test1=3:PreferNoSchedule --overwrite 
node/node01 modified
[root@master01 k8s-yaml]# kubectl describe nodes node01
Taints:             test1=3:PreferNoSchedule
4、删除节点上污点
[root@master01 k8s-yaml]# kubectl taint node node01 test1=3:PreferNoSchedule-
5、查看节点上污点
[root@master01 k8s-yaml]# kubectl describe nodes node01
Taints:             test1=3:PreferNoSchedule
6、修改node01上的污点类型,修改为不可调度
[root@master01 k8s-yaml]# kubectl taint node node01 test1=2:NoSchedule --overwrite 
node/node01 modified
[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 unchanged
[root@master01 k8s-yaml]# kubectl delete deployments.apps nginx1
deployment.apps "nginx1" deleted
[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 created
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                     READY   STATUS    RESTARTS   AGE   IP       NODE     NOMINATED NODE   READINESS GATES
nginx1-654cb56c4-dhwrm   0/1     Pending   0          10s   <none>   <none>   <none>           <none>
nginx1-654cb56c4-t5jfl   0/1     Pending   0          10s   <none>   <none>   <none>           <none>
nginx1-654cb56c4-zxtpw   0/1     Pending   0          10s   <none>   <none>   <none>           <none>没有可以调度的节点,pod状态为pending

二、容忍

即使节点上有污点,调度器依然可以把pod部署在有污点的节点。相当于忽略此污点

2.1、#Equal匹配:和节点上的污点的标签 键名 值 污点类型要完全匹配才能生效。

Equal容忍节点上的污点的标签,键名test1 值2 污点类型NoSchedule要完全匹配才能生效。

kubectl taint node node01 test1=2:NoSchedule
      tolerations:- key: "test1"operator: "Equal"value: "2"effect: "NoSchedule"
[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Equal"value: "2"effect: "NoSchedule"#operator对应的值只有两个:Equal  等于   Exists包含#Equal:和节点上的污点的标签 键名 值  污点类型要完全匹配才能生效。[root@master01 k8s-yaml]# kubectl describe nodes node01Taints:             test1=2:NoScheduletest1=2:PreferNoSchedule[root@master01 k8s-yaml]# kubectl taint nodes node01 test1=2:PreferNoSchedule-
node/node01 untainted
[root@master01 k8s-yaml]# kubectl describe nodes node01
Taints:             test1=2:NoSchedule[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 created
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-7689b876fb-5sr8g   1/1     Running   0          3s    10.244.1.129   node01   <none>           <none>
nginx1-7689b876fb-dkhn8   1/1     Running   0          3s    10.244.1.128   node01   <none>           <none>
nginx1-7689b876fb-f6545   1/1     Running   0          3s    10.244.1.127   node01   <none>           <none>

Equal容忍节点上的污点的标签,键名test1 值3 污点类型NoExecute要完全匹配才能生效。

kubectl taint node node01 test1=2:PreferNoSchedule
      tolerations:- key: "test1"operator: "Equal"value: "3"effect: "NoExecute"
[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Equal"value: "3"effect: "NoExecute"#operator对应的值只有两个:Equal  等于   Exists包含[root@master01 k8s-yaml]# kubectl delete deployments.apps nginx1 
deployment.apps "nginx1" deleted
[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 created
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-746b4c957c-5l7qq   1/1     Running   0          2s    10.244.2.188   node02   <none>           <none>
nginx1-746b4c957c-c7wkx   1/1     Running   0          2s    10.244.2.189   node02   <none>           <none>
nginx1-746b4c957c-mn8lv   1/1     Running   0          2s    10.244.2.187   node02   <none>           <none>[root@master01 k8s-yaml]# kubectl delete -f test11.yaml 
deployment.apps "nginx1" deleted[root@master01 k8s-yaml]# kubectl taint node node01 test1=2:NoSchedule-[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS        RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-667b66f9df-zxj5t   0/1     Terminating   0          14m   <none>         node02   <none>           <none>
nginx1-746b4c957c-8j7lt   1/1     Running       0          5s    10.244.1.132   node01   <none>           <none>
nginx1-746b4c957c-cgm6j   1/1     Running       0          6s    10.244.2.194   node02   <none>           <none>
nginx1-746b4c957c-hj2mt   1/1     Running       0          7s    10.244.1.131   node01   <none>           <none>
容忍节点上的污点的标签,键名test1 值3 污点类型NoExecute要完全匹配才能生效。
#指定pod在这个节点上部署成功之后多久运行多久被驱逐,单位为s
[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Equal"value: "3"effect: "NoExecute"tolerationSeconds: 10#指定pod在这个节点上部署成功之后多久运行多久被驱逐,单位为s
[root@master01 k8s-yaml]# kubectl delete -f test11.yaml 
[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS              RESTARTS   AGE    IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-5bd6779d95-7lf99   0/1     ContainerCreating   0          1s     <none>         node01   <none>           <none>
nginx1-5bd6779d95-xvmvc   1/1     Running             0          2s     10.244.2.195   node02   <none>           <none>
nginx1-746b4c957c-8j7lt   1/1     Terminating         0          2m6s   10.244.1.132   node01   <none>           <none>
nginx1-746b4c957c-cgm6j   1/1     Running             0          2m7s   10.244.2.194   node02   <none>           <none>
nginx1-746b4c957c-hj2mt   1/1     Running             0          2m8s   10.244.1.131   node01   <none>           <none>[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-5bd6779d95-7lf99   1/1     Running   0          37s   10.244.1.133   node01   <none>           <none>
nginx1-5bd6779d95-878pr   1/1     Running   0          18s   10.244.1.134   node01   <none>           <none>
nginx1-5bd6779d95-xlvh5   1/1     Running   0          6s    10.244.2.200   node02   <none>           <none>此驱逐污点,容忍之后,再加上tolerationSeconds: 10s开始驱逐

2.2、Exists包含匹配-包含键值对或者污点类型之一即可

[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Exists"effect: "NoExecute"tolerationSeconds: 10#指定pod在这个节点上部署成功之后多久运行多久被驱逐,单位为s[root@master01 k8s-yaml]# kubectl apply -f test11.yaml [root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-5c7757865d-ck5lf   1/1     Running   0          29s   10.244.1.135   node01   <none>           <none>
nginx1-5c7757865d-skzmc   1/1     Running   0          17s   10.244.1.136   node01   <none>           <none>
nginx1-5c7757865d-txqzd   1/1     Running   0          10s   10.244.2.244   node02   <none>           <none>

Exists包含匹配-包含键值对"test1"

[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Exists"tolerationSeconds: 10#指定pod在这个节点上部署成功之后多久运行多久被驱逐,单位为s[root@master01 k8s-yaml]# kubectl apply -f test10.yaml 
The Deployment "nginx1" is invalid: spec.template.spec.tolerations[0].effect: Invalid value: "": effect must be 'NoExecute' when `tolerationSeconds` is set必须加#effect: "NoExecute"[root@master01 k8s-yaml]# vim test10.yaml[root@master01 k8s-yaml]# vim test10.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 2selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Exists"effect: "NoExecute"tolerationSeconds: 10[root@master01 k8s-yaml]# kubectl apply -f test10.yaml 
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE     IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-5c7757865d-tfg4n   1/1     Running   0          2s      10.244.2.47    node02   <none>           <none>
nginx1-5c7757865d-zwlh5   1/1     Running   0          3m11s   10.244.1.173   node01   <none>           <none>

Exists包含匹配-污点类型"NoExecute"

[root@master01 k8s-yaml]# vim test10.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 2selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- operator: "Exists"effect: "NoExecute"#Exists 不指定key的时候,表示所有的节点只要是NoExcute的标签都可以部署。#master01 test1=1:NoExecute test1=2:NoExecute test1=3:NoExecute[root@master01 k8s-yaml]# kubectl describe nodes node01 
Taints:             test1=2:NoSchedule
[root@master01 k8s-yaml]# kubectl describe nodes master01
Taints:             node-role.kubernetes.io/master:NoSchedule
[root@master01 k8s-yaml]# kubectl describe nodes node02
Taints:             test1=3:NoExecute[root@master01 k8s-yaml]# kubectl apply -f test10.yaml [root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP            NODE     NOMINATED NODE   READINESS GATES
nginx1-667b66f9df-6xwk6   1/1     Running   0          7s    10.244.2.88   node02   <none>           <none>
nginx1-667b66f9df-hgrnc   1/1     Running   0          7s    10.244.2.90   node02   <none>           <none>
nginx1-667b66f9df-mfndg   1/1     Running   0          7s    10.244.2.89   node02   <none>           <none>

Exists包含匹配-键值test1进行容忍

[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Exists"[root@master01 k8s-yaml]# kubectl get nodes --show-labels
NAME       STATUS   ROLES                  AGE   VERSION    LABELS
master01   Ready    control-plane,master   9d    v1.20.15   beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=master01,kubernetes.io/os=linux,node-role.kubernetes.io/control-plane=,node-role.kubernetes.io/master=
node01     Ready    <none>                 9d    v1.20.15   beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=node01,kubernetes.io/os=linux,memory=1000,test1=a,test3=b
node02     Ready    <none>                 9d    v1.20.15   beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=node02,kubernetes.io/os=linux,test2=b,xy102=98[root@master01 k8s-yaml]# kubectl describe nodes node01 
Taints:             test1=2:NoSchedule
[root@master01 k8s-yaml]# kubectl describe nodes master01
Taints:             node-role.kubernetes.io/master:NoSchedule
[root@master01 k8s-yaml]# kubectl describe nodes node02
Taints:             test1=3:NoExecute[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 created
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-57b55d9bf4-7zb52   1/1     Running   0          13s   10.244.1.175   node01   <none>           <none>
nginx1-57b55d9bf4-ws52x   1/1     Running   0          11s   10.244.1.176   node01   <none>           <none>
nginx1-57b55d9bf4-xb4kj   1/1     Running   0          12s   10.244.2.91    node02   <none>           <none>

通过Exists包含匹配-污点类型effect: "NoExecute"进行容忍

[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- operator: "Exists"effect: "NoExecute"[root@master01 k8s-yaml]# kubectl describe nodes node01 
Taints:             test1=2:NoSchedule
[root@master01 k8s-yaml]# kubectl describe nodes master01
Taints:             node-role.kubernetes.io/master:NoSchedule
[root@master01 k8s-yaml]# kubectl describe nodes node02
Taints:             test1=3:NoExecute       [root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-667b66f9df-758ps   1/1     Running   0          10s   10.244.2.192   node02   <none>           <none>
nginx1-667b66f9df-p4jsk   1/1     Running   0          9s    10.244.2.193   node02   <none>           <none>
nginx1-667b66f9df-zxj5t   1/1     Running   0          11s   10.244.2.191   node02   <none>           <none>

Exists包含匹配-污点类型effect: "NoSchedule"进行容忍

[root@master01 k8s-yaml]# vim test10.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- operator: "Exists"effect: "NoSchedule"[root@master01 k8s-yaml]# kubectl apply -f test10.yaml 
deployment.apps/nginx1 created
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE       NOMINATED NODE   READINESS GATES
nginx1-7bb454c589-kntvb   1/1     Running   0          3s    10.244.0.18    master01   <none>           <none>
nginx1-7bb454c589-mrftz   1/1     Running   0          3s    10.244.1.178   node01     <none>           <none>
nginx1-7bb454c589-qd748   1/1     Running   0          3s    10.244.1.177   node01     <none>           <none>

三、不可调度和排水

3.1、cordon

直接标记节点为不可用的状态,调度器不会把pod部署该节点

调度器不会把pod部署在node02

cordon:直接标记节点为不可用的状态

[root@master01 k8s-yaml]# kubectl describe nodes node02Taints:             test1=3:NoExecute[root@master01 k8s-yaml]# kubectl cordon node02[root@master01 k8s-yaml]# kubectl describe nodes node02Taints:             test1=3:NoExecutenode.kubernetes.io/unschedulable:NoSchedule

uncordon:取消调度器不会把pod部署在node02

[root@master01 k8s-yaml]# kubectl describe nodes node02Taints:             test1=3:NoExecutenode.kubernetes.io/unschedulable:NoSchedule
[root@master01 k8s-yaml]# kubectl uncordon node02Taints:             test1=3:NoExecute

3.2、排水:(慎用)

drain

标记节点为不可调度,而且会把节点上pod驱逐到其他节点。

[root@master01 k8s-yaml]# kubectl drain node02 --ignore-daemonsets --delete-local-data --force --ignore-daemonsets:无视daemonset部署的pod
master 1
node01 1 1
node02
现在master 1和node01 1上选择一个,最终结果被删除
master 1
node01 1 
node02--delete-local-data 如果被排水的节点上有本地的挂载点,会强制杀死该pod
--force 不是控制器创建的pod会被强制释放。[root@master01 k8s-yaml]# vim test10.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginximage: nginx:1.22tolerations:- key: "test1"operator: "Equal"value: "3"effect: "NoExecute"tolerationSeconds: 10[root@master01 k8s-yaml]# kubectl apply -f test10.yaml [root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE    IP             NODE       NOMINATED NODE   READINESS GATES
nginx1-5c7757865d-b4k96   1/1     Running   0          7m9s   10.244.1.139   node01     <none>           <none>
nginx1-5c7757865d-hc2zp   1/1     Running   0          7m9s   10.244.0.14    master01   <none>           <none>
nginx1-5c7757865d-lj6pr   1/1     Running   0          7m9s   10.244.2.49    node02     <none>           <none>
[root@master01 k8s-yaml]# kubectl drain node02 --ignore-daemonsets --delete-local-data --force 
Flag --delete-local-data has been deprecated, This option is deprecated and will be deleted. Use --delete-emptydir-data.
node/node02 cordoned
WARNING: ignoring DaemonSet-managed Pods: kube-system/kube-flannel-ds-w985p, kube-system/kube-proxy-kpvs2
evicting pod default/nginx1-5c7757865d-lj6pr
pod/nginx1-5c7757865d-lj6pr evicted
node/node02 evicted
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE       NOMINATED NODE   READINESS GATES
nginx1-5c7757865d-b4k96   1/1     Running   0          14m   10.244.1.139   node01     <none>           <none>
nginx1-5c7757865d-hc2zp   1/1     Running   0          14m   10.244.0.14    master01   <none>           <none>
nginx1-5c7757865d-qk8dm   1/1     Running   0          29s   10.244.1.140   node01     <none>           <none>

取消排水

[root@master01 k8s-yaml]# kubectl uncordon node02   ##设置排水,只能用取消排水
node/node02 uncordoned
用下面方法删除不了-------------------------------------
[root@master01 k8s-yaml]# kubectl describe nodes node02Taints:             test1=3:NoExecutenode.kubernetes.io/unschedulable:NoSchedule[root@master01 k8s-yaml]# kubectl taint node node02 node.kubernetes.io/unschedulable:NoSchedule-[root@master01 k8s-yaml]# kubectl describe nodes node02Taints:             test1=3:NoExecutenode.kubernetes.io/unschedulable:NoSchedule[root@master01 k8s-yaml]# kubectl uncordon node02
[root@master01 k8s-yaml]# kubectl describe nodes node02
Taints:             test1=3:NoExecute------------------------------------------------------------
[root@master01 k8s-yaml]# kubectl describe nodes node02Taints:             test1=3:NoExecute[root@master01 k8s-yaml]# kubectl delete deployments.apps nginx1 
deployment.apps "nginx1" deleted
[root@master01 k8s-yaml]# kubectl apply -f test11.yaml
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE       NOMINATED NODE   READINESS GATES
nginx1-5c7757865d-9cddh   1/1     Running   0          18s   10.244.1.141   node01     <none>           <none>
nginx1-5c7757865d-dt5qf   1/1     Running   0          18s   10.244.0.15    master01   <none>           <none>
nginx1-5c7757865d-hp64d   1/1     Running   0          18s   10.244.2.50    node02     <none>           <none>

3.3、master的特殊情况:

master节点一般情况下作为集群的调度者,尽量部署pod。但是为了资源最大化,master也可以部署。

可以设置污点类型为:PreferNoSchedule

2、如果集群规模比较小,也可以直接用来当节点进行pod部署。

当排水和驱逐之后,怎么样能让pod重新回到节点?

1、污点类型驱逐必须要取消

2、kubectl uncordon node02

1、重启

四、数据卷

容器,pod的生命周期是有限的,一旦重启或者奔溃,数据会丢失

为了保证数据的完整,我们要实现pod内的容器和节点的挂载。

volume

1、emptyDir 存储卷

emptyDir 存储卷

pod分配给节点之前,首先创建emptyDir卷,只要运行在节点,数据卷一直存在。

这个数据卷不能和宿主机共享,pod内的容器之间共享,一旦pod重启,enptyDir卷的数据也会一起删除。

主要用于容器内部组件通信,不涉及敏感数据

2、hostPath数据卷

hostPath数据卷--------基于宿主机

hostPath和节点挂载,当pod部署到节点时,就会和节点的指定目录进行挂载。

pod node01 /opt/test1-----/opt/test

deployment-----pod-------3

master01 /opt/test1-----/opt/test

node01 /opt/test1-----/opt/test

node02 /opt/test1-----/opt/test

数据可以持久化,但是node节点格式化,数据也会消失。

使用情况:每个pod运行的服务不同,保留的数据要做区分,这个时候需要用hostpath

例如kafka、redis使用

3、nfs共享存储卷:

nfs共享存储:

集群里面的pod相当于客户端

node01 /opt/test1

node02 /opt/test1 ------------->三台节点共享一个挂载点,所有数也都在这一个挂载点

master01 /opt/test1

nginx的服务或者是pod的数据是一致的。

/usr/share/nginx/html/index.html

[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginx1image: nginx:1.22volumeMounts:- name: htmlmountPath: /usr/share/nginx/html#容器内的路径- name: nginx2image: nginx:1.22volumeMounts:- name: htmlmountPath: /datacommand: ["/bin/bash","-c","while true; do echo $(date) >> /data/index.html; sleep 2; done"]volumes:- name: htmlemptyDir: {}
#容器1的/usr/share/nginx/html和容器2的/data,数据卷的emptyDir,一旦重启,数据就会丢失
[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
[root@master01 k8s-yaml]# kubectl get pod -o wide
[root@master01 k8s-yaml]# kubectl exec -it nginx1-6b677dd6bc-cmc84 -c nginx1 bash
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
root@nginx1-6b677dd6bc-cmc84:/# cd /usr/share/nginx/html/
root@nginx1-6b677dd6bc-cmc84:/usr/share/nginx/html# ls
index.html
root@nginx1-6b677dd6bc-cmc84:/usr/share/nginx/html# tail -f index.html 
Wed Sep 4 05:57:58 UTC 2024
Wed Sep 4 05:58:00 UTC 2024
Wed Sep 4 05:58:02 UTC 2024
Wed Sep 4 05:58:04 UTC 2024
Wed Sep 4 05:58:06 UTC 2024
Wed Sep 4 05:58:08 UTC 2024
[root@master01 k8s-yaml]# kubectl exec -it nginx1-6b677dd6bc-cmc84 -c nginx2 bash
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
root@nginx1-6b677dd6bc-cmc84:/# ls 
bin   data  docker-entrypoint.d   etc	lib    media  opt   root  sbin	sys  usr
boot  dev   docker-entrypoint.sh  home	lib64  mnt    proc  run   srv	tmp  var
root@nginx1-6b677dd6bc-cmc84:/# cd data/
root@nginx1-6b677dd6bc-cmc84:/data# ls
index.html

挂载节点宿主机的目录/opt/xy102

[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginx1image: nginx:1.22volumeMounts:- name: htmlmountPath: /usr/share/nginx/html#容器内的路径- name: nginx2image: nginx:1.22volumeMounts:- name: htmlmountPath: /datacommand: ["/bin/bash","-c","while true; do echo $(date) >> /data/index.html; sleep 2; done"]volumes:- name: htmlhostPath:path: /opt/xy102type: DirectoryOrCreate
pod共享一个挂载卷,共用一个ip[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 configured
[root@master01 k8s-yaml]# kubectl get pod -o wide
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-6c574c856d-5xvvt   2/2     Running   0          93s   10.244.1.146   node01   <none>           <none>
nginx1-6c574c856d-j97cs   2/2     Running   0          95s   10.244.1.145   node01   <none>           <none>
nginx1-6c574c856d-xnq5h   2/2     Running   0          91s   10.244.1.147   node01   <none>           <none>[root@node01 xy102]# cd /opt/xy102/
[root@node01 xy102]# ls
index.html
[root@node01 xy102]# cat index.html 
Wed Sep 4 06:04:47 UTC 2024
Wed Sep 4 06:04:49 UTC 2024
Wed Sep 4 06:04:49 UTC 2024

server: 192.168.168.81的/opt/data1与容器目录挂载共享

[root@master01 k8s-yaml]# mkdir /opt/data1
[root@master01 k8s-yaml]# chmod 777 /opt/data1/[root@master01 k8s-yaml]# vim /etc/exports/opt/data1 192.168.168.0/24(rw,no_root_squash)
[root@master01 k8s-yaml]# systemctl restart rpcbind
[root@master01 k8s-yaml]# systemctl restart nfs[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginx1image: nginx:1.22volumeMounts:- name: htmlmountPath: /usr/share/nginx/html#容器内的路径- name: nginx2image: nginx:1.22volumeMounts:- name: htmlmountPath: /datacommand: ["/bin/bash","-c","while true; do echo $(date) >> /data/index.html; sleep 2; done"]volumes:- name: htmlnfs:path: /opt/data1server: 192.168.168.81[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 configured
[root@master01 k8s-yaml]# kubectl get pod -o wide
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                      READY   STATUS    RESTARTS   AGE    IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-679d6cfc9d-g869l   2/2     Running   0          3m1s   10.244.2.187   node02   <none>           <none>
nginx1-679d6cfc9d-t86mz   2/2     Running   0          3m5s   10.244.2.186   node02   <none>           <none>
nginx1-679d6cfc9d-z9ss4   2/2     Running   0          3m2s   10.244.1.148   node01   <none>           <none>
[root@master01 opt]# cd data1/
[root@master01 data1]# ls
index.html
[root@master01 data1]# touch 123 > 123.txt
[root@master01 data1]# ls
123  123.txt  index.html
[root@master01 data1]# cat 123
[root@master01 data1]# cat 123.txt 
[root@master01 data1]# cat 123.txt 
[root@master01 data1]# echo 123 > 234.txt[root@master01 k8s-yaml]# kubectl exec -it nginx1-679d6cfc9d-g869l bash
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
Defaulting container name to nginx1.
Use 'kubectl describe pod/nginx1-679d6cfc9d-g869l -n default' to see all of the containers in this pod.
root@nginx1-679d6cfc9d-g869l:/# cd /usr/share/nginx/html/
root@nginx1-679d6cfc9d-g869l:/usr/share/nginx/html# ls
index.html
root@nginx1-679d6cfc9d-g869l:/usr/share/nginx/html# ls
123  123.txt  index.html
root@nginx1-679d6cfc9d-g869l:/usr/share/nginx/html# ls
123  123.txt  234.txt  index.html
root@nginx1-679d6cfc9d-g869l:/usr/share/nginx/html# cat 234.txt 
123nginx2中共享的是/data
[root@master01 k8s-yaml]# kubectl exec -it nginx1-679d6cfc9d-g869l -c nginx2 bash
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
root@nginx1-679d6cfc9d-g869l:/# cd /usr/share/nginx/html/
root@nginx1-679d6cfc9d-g869l:/usr/share/nginx/html# ls
50x.html  index.html
root@nginx1-679d6cfc9d-g869l:/usr/share/nginx/html# cd /data/
root@nginx1-679d6cfc9d-g869l:/data# ls
123  123.txt  234.txt  index.html

server: k8s5(192.168.168.85)的/opt/xy103与容器目录挂载

[root@k8s5 ~]# cd /opt/
[root@k8s5 opt]# ls
jenkins-2.396-1.1.noarch.rpm  test
[root@k8s5 opt]# mkdir xy103[root@k8s5 opt]# chmod 777 xy103/[root@k8s5 opt]# vim /etc/exports/opt/xy103 192.168.168.0/24(rw,no_root_squash)[root@k8s5 opt]# systemctl restart rpcbind
[root@k8s5 opt]# systemctl restart nfs
[root@k8s5 opt]# showmount -e
Export list for k8s5:
/opt/xy103 192.168.168.0/24-----------k8s三台+k8s5------------
192.168.168.85 k8s5
------------------[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginx1image: nginx:1.22volumeMounts:- name: htmlmountPath: /usr/share/nginx/html#容器内的路径- name: nginx2image: nginx:1.22volumeMounts:- name: htmlmountPath: /datacommand: ["/bin/bash","-c","while true; do echo $(date) >> /data/index.html; sleep 2; done"]volumes:- name: htmlnfs:path: /opt/xy103server: k8s5
[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
deployment.apps/nginx1 configured
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                     READY   STATUS    RESTARTS   AGE    IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-5db8b56b4-27jg2   2/2     Running   0          98s    10.244.2.190   node02   <none>           <none>
nginx1-5db8b56b4-h2d9s   2/2     Running   0          99s    10.244.1.151   node01   <none>           <none>
nginx1-5db8b56b4-h6gqg   2/2     Running   0          101s   10.244.2.189   node02   <none>           <none>[root@master01 k8s-yaml]# kubectl describe nodes master01 
Taints:             node-role.kubernetes.io/master:NoSchedule[root@master01 k8s-yaml]# kubectl exec -it nginx1-5db8b56b4-27jg2 bash
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
Defaulting container name to nginx1.
Use 'kubectl describe pod/nginx1-5db8b56b4-27jg2 -n default' to see all of the containers in this pod.
root@nginx1-5db8b56b4-27jg2:/# cd /usr/share/nginx/html/
root@nginx1-5db8b56b4-27jg2:/usr/share/nginx/html# ls
index.html[root@k8s5 opt]# cd xy103/
[root@k8s5 xy103]# ls
index.html[root@k8s5 xy103]# echo 123 > 123.txtroot@nginx1-5db8b56b4-27jg2:/usr/share/nginx/html# cat 123.txt 
123[root@master01 k8s-yaml]# kubectl exec -it nginx1-5db8b56b4-27jg2 -c nginx2 bash
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] -- [COMMAND] instead.
root@nginx1-5db8b56b4-27jg2:/# cd /data/
root@nginx1-5db8b56b4-27jg2:/data# ls
123.txt  index.html
root@nginx1-5db8b56b4-27jg2:/data# cat 123.txt 
123

server: k8s5(192.168.168.85)的/opt/xy103与容器目录挂载并开启service

[root@k8s5 ~]# cd /opt/
[root@k8s5 opt]# ls
jenkins-2.396-1.1.noarch.rpm  test
[root@k8s5 opt]# mkdir xy103[root@k8s5 opt]# chmod 777 xy103/[root@k8s5 opt]# vim /etc/exports/opt/xy103 192.168.168.0/24(rw,no_root_squash)[root@k8s5 opt]# systemctl restart rpcbind
[root@k8s5 opt]# systemctl restart nfs
[root@k8s5 opt]# showmount -e
Export list for k8s5:
/opt/xy103 192.168.168.0/24-----------k8s三台+k8s5------------
192.168.168.85 k8s5
----------------------------------[root@master01 k8s-yaml]# vim test11.yaml apiVersion: apps/v1
kind: Deployment
metadata:labels:app: nginx1name: nginx1
spec:replicas: 3selector:matchLabels:app: nginx1template:metadata:labels:app: nginx1spec:containers:- name: nginx1image: nginx:1.22volumeMounts:- name: htmlmountPath: /usr/share/nginx/html#容器内的路径- name: nginx2image: nginx:1.22volumeMounts:- name: htmlmountPath: /datacommand: ["/bin/bash","-c","while true; do echo $(date) >> /data/index.html; sleep 2; done"]volumes:- name: htmlnfs:path: /opt/xy103server: k8s5---
#表示分段,上一个yml结束,下一个新的yml
apiVersion: v1
kind: Service
metadata:name: nginx1
# namespacelabels:app: nginx1
spec:type: NodePortports:- port: 80targetPort: 80nodePort: 30000selector:app: nginx1[root@master01 k8s-yaml]# kubectl apply -f test11.yaml 
[root@master01 k8s-yaml]# kubectl get pod -o wide
NAME                     READY   STATUS    RESTARTS   AGE     IP             NODE     NOMINATED NODE   READINESS GATES
nginx1-5db8b56b4-4bg5l   2/2     Running   0          9m52s   10.244.2.191   node02   <none>           <none>
nginx1-5db8b56b4-hrg7c   2/2     Running   0          9m52s   10.244.1.152   node01   <none>           <none>
nginx1-5db8b56b4-mx5cq   2/2     Running   0          9m52s   10.244.1.153   node01   <none>           <none>[root@master01 k8s-yaml]# curl 192.168.168.81:30000

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/53267.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于微信的热门景点推荐小程序的设计与实现(论文+源码)_kaic

摘 要 近些年来互联网迅速发展人们生活水平也稳步提升&#xff0c;人们也越来越热衷于旅游来提高生活品质。互联网的应用与发展也使得人们获取旅游信息的方法也更加丰富&#xff0c;以前的景点推荐系统现在已经不足以满足用户的要求了&#xff0c;也不能满足不同用户自身的个…

Leetcode面试经典150题-92.反转链表II

解法都在代码里&#xff0c;不懂就留言或者私信 比反转链表I略微难一点点 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode() {}* ListNode(int val) { this.val val; }* ListNode(int val, Li…

在移动应用程序中集成模糊方法的基于物联网的天气监测系统的实现

这篇论文的标题是《IMPLEMENTATION OF WEATHER MONITORING SYSTEM BASED INTERNET OF THINGS USING INTEGRATED FUZZY METHOD IN MOBILE APPLICATIONS》&#xff0c;作者是 Muhammad Malik Amin&#xff0c;来自 Politeknik Negeri Jakarta 的 D-IV INSTRUMENTASI DAN KONTROL …

代码随想录:62.不同路径

62. 不同路径 这道题是动态规划问题&#xff0c;主要是在初始化时考虑&#xff0c;我们可以初始dp[0][1]或dp[1][0]为1&#xff0c;其目的是为了让dp[1][1]为1&#xff0c;也就是起点进行初始化 class Solution { public:int uniquePaths(int m, int n) {int dp[200][200]{0}…

深度探索Unity与C#:编织游戏世界的奇幻篇章

在数字编织的梦幻之境中&#xff0c;Unity游戏引擎与C#编程语言如同双生子&#xff0c;共同编织着游戏世界的奇幻篇章。《Unity游戏开发实战&#xff1a;从零到C#高手》这本书&#xff0c;不仅仅是技术的堆砌&#xff0c;它更像是一位智慧导师&#xff0c;引领着我们深入探索这…

【HuggingFace Transformers】LlamaModel源码解析

LlamaModel源码解析 1. LlamaModel 介绍2. LlamaModel类 源码解析3. 4维因果注意力掩码生成 1. LlamaModel 介绍 LlamaModel 是一个基于 Transformer 架构的解码器模型&#xff0c;用于自然语言处理任务。它是 Meta 的 LLaMA (Large Language Model Meta AI) 系列的一部分&…

【基础】Three.js加载纹理贴图、加载外部gltf格式文件

1. 模型使用纹理贴图 const geometry new THREE.BoxGeometry(10, 10, 10);const textureLoader new THREE.TextureLoader(); // 创建纹理贴图加载器const texture textureLoader.load("/crate.gif"); // 加载纹理贴图const material new THREE.MeshLambertMater…

一款基于SpringBoot+Element Plus打造的进销存管理系统,方便二次开发或直接使用(附源码)

前言 当前市场上有许多进销存管理软件&#xff0c;但它们往往存在着一些痛点&#xff0c;比如灵活性不足、难以适应快速变化的需求&#xff0c;或者缺乏二次开发的支持。因此&#xff0c;我们需要一款既强大又灵活的软件来处理这些问题。 那么java进销存管理系统就是为了处理…

手把手写深度学习(27):如果获得相机位姿态的plücker embedding?以RealEstate10K为例

手把手写深度学习(0)&#xff1a;专栏文章导航 前言&#xff1a;用plücker embedding表示相机的位姿是一种非常常用的方法&#xff0c;这篇博客以RealEstate10K数据集为例子&#xff0c;详细讲解如何从相机的轨迹坐标中获得plücker embedding&#xff0c;用于下一步模型的学…

Java面试复习总结03

Java面试复习总结03 1、什么是SPI&#xff1f;2、SPI和API有什么区别&#xff1f;3、使用SPI机制的原因&#xff1f;4、SPI机制的优缺点&#xff1f; 1、什么是SPI&#xff1f; SPI 即 Service Provider Interface &#xff0c;字面意思就是&#xff1a;“服务提供者的接口”&…

Arduino library for proteus 下载 安装 测试

Arduino library include: https://drive.google.com/uc?exportdownload&id1P4VtXaomJ4lwcGJOZwR_25oeon9Zzvwb 第一步&#xff1a; 也可从我的共享网盘当中下载&#xff1a; 第2步&#xff1a;解压文件&#xff1a; 第3步&#xff1a; copy lib and idx 到对应的…

java宠物商城网站系统的设计与实现

springboot508基于Springboot宠物商城网站系统 题目&#xff1a;宠物商城网站系统的设计与实现 摘 要 如今社会上各行各业&#xff0c;都喜欢用自己行业的专属软件工作&#xff0c;互联网发展到这个时候&#xff0c;人们已经发现离不开了互联网。新技术的产生&#xff0c;往往…

PHP一站式班级解决方案班级管家系统小程序源码

一站式班级解决方案 —— 班级管家系统 &#x1f393;【开篇&#xff1a;班级管理的烦恼&#xff0c;你中招了吗&#xff1f;】&#x1f393; 作为班主任或班级管理者&#xff0c;你是否经常为繁琐的班级事务而头疼&#xff1f;从日常通知的发布到作业的收集&#xff0c;从班…

TOGAF之架构标准规范-架构愿景

TOGAF标准规范中&#xff0c;架构愿景阶段的主要工作包括定义企业架构的范围、确认企业架构的利益相关者、创建企业架构愿景、获得利益相关者的批准。 如上所示&#xff0c;架构愿景&#xff08;Architecture Vision&#xff09;在TOGAF标准规范中处于A阶段 如上所示&#xff0…

SpringBoot学习(4)(yml配置信息书写和获取)(SpringEL表达式语言)

目录 1、yml配置信息的书写和获取介绍 2、案例学习 &#xff08;1&#xff09;配置信息的书写注意事项 &#xff08;2&#xff09;配置信息的获取 &#xff08;3&#xff09;注解Value &#xff08;4&#xff09;相同层级的共同前缀&#xff0c;可以使用下面这个注解 3、…

Great Wall长城工作站安装银河麒麟V10(SP1)-ARM版桌面操作系统

长城工作站安装银河麒麟V10(SP1)桌面操作系统 1. 硬件信息 [1]. Great Wall 长城台式微型计算机 产品型号&#xff1a;世恒TD120A2 型号代码&#xff1a;世恒TD120A2-019 电源&#xff1a;220V~3A 50Hz [2]. 芯片型号 架构&#xff1a; aarch64 CPU 运行模式&#xff1a…

DeepFM算法代码

以下代码均采用Tensorflow1.15版本 数据集私聊我 import tensorflow as tf import numpy as np import pandas as pd# 定义特征列 def get_feature_columns():# 假设 Criteo 数据集有 10 个数值特征和 10 个类别特征numerical_feature_columns [tf.feature_column.numeric_c…

2024.9.3 作业

自己实现栈和队列 代码&#xff1a; /*******************************************/ 文件名&#xff1a;sq.h /*******************************************/ #ifndef SQ_H #define SQ_H #include <iostream> #include<cstring>using namespace std; class …

秋招突击——算法练习——8/26——图论——200-岛屿数量、994-腐烂的橘子、207-课程表、208-实现Trie

文章目录 引言正文200-岛屿数量个人实现 994、腐烂的橘子个人实现参考实现 207、课程表个人实现参考实现 208、实现Trie前缀树个人实现参考实现 总结 引言 正文 200-岛屿数量 题目链接 个人实现 我靠&#xff0c;这道题居然是腾讯一面的类似题&#xff0c;那道题是计算最…

[数据集][目标检测]智慧牧场猪只检测数据集VOC+YOLO格式16245张1类别

数据集格式&#xff1a;Pascal VOC格式YOLO格式(不包含分割路径的txt文件&#xff0c;仅仅包含jpg图片以及对应的VOC格式xml文件和yolo格式txt文件) 图片数量(jpg文件个数)&#xff1a;16245 标注数量(xml文件个数)&#xff1a;16245 标注数量(txt文件个数)&#xff1a;16245 标…