Alternatively, if you are the root user, you can run:
export KUBECONFIG=/etc/kubernetes/admin.conf
You should now deploy a pod network to the cluster. Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at: https://kubernetes.io/docs/concepts/cluster-administration/addons/
Then you can join any number of worker nodes by running the following on each as root:
#查看是否运行: root@k8s-master:~# kubectl get pods -n tigera-operator NAME READY STATUS RESTARTS AGE tigera-operator-89c775547-xmrnt 0/1 ContainerCreating 0 20s
wget https://raw.githubusercontent.com/projectcalico/calico/v3.28.2/manifests/custom-resources.yaml # 注我们在kubeadm-config.yaml文件中添加的pod网段是10.244.0.0/16所以我们要修改为一样的 vim custom-resources.yaml
#应用配置 kubectl create -f custom-resources.yaml
#查看命名空间 root@k8s-master:~# kubectl get ns NAME STATUS AGE calico-system Active 5s default Active 9m41s kube-node-lease Active 9m40s kube-public Active 9m43s kube-system Active 9m46s tigera-operator Active 2m24s
#查看集群状态: kubectl get nodes NAME STATUS ROLES AGE VERSION k8s-work01 NotReady <none> 4m37s v1.31.0 k8s-work02 NotReady <none> 4m31s v1.31.0 node NotReady control-plane 10m v1.31.0
root@k8s-master:~# kubectl get deployment NAME READY UP-TO-DATE AVAILABLE AGE nginxweb 1/2 2 1 32m
root@k8s-master:~# kubectl get pods NAME READY STATUS RESTARTS AGE nginxweb-b4ccbf5dc-f684w 1/1 Running 0 32m nginxweb-b4ccbf5dc-hbpxs 0/1 ContainerCreating 0 32m
root@k8s-master:~# kubectl get svc NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 40h nginxweb-service NodePort 10.104.125.155 <none> 80:30080/TCP 48m
╭─test@MacBook-Pro ~ ╰─$ curl 192.168.64.3:30080 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p> </body> </html>
╭─test@MacBook-Pro ~ ╰─$ curl 192.168.64.4:30080 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p> </body> </html>
╭─test@MacBook-Pro ~ ╰─$ curl 192.168.64.5:30080 <!DOCTYPE html> <html> <head> <title>Welcome to nginx!</title> <style> html { color-scheme: light dark; } body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>Welcome to nginx!</h1> <p>If you see this page, the nginx web server is successfully installed and working. Further configuration is required.</p>
<p>For online documentation and support please refer to <a href="http://nginx.org/">nginx.org</a>.<br/> Commercial support is available at <a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p> </body> </html>