Ubuntu 24.04
Sponsored Link

Kubernetes : वर्कर नोड कॉन्फ़िगर करें2024/06/07

 

मल्टी नोड्स Kubernetes क्लस्टर कॉन्फ़िगर करें.

यह उदाहरण निम्न प्रकार के वातावरण पर आधारित है।

+----------------------+   +----------------------+
|  [ ctrl.srv.world ]  |   |   [ dlp.srv.world ]  |
|     Manager Node     |   |     Control Plane    |
+-----------+----------+   +-----------+----------+
        eth0|10.0.0.25             eth0|10.0.0.30
            |                          |
------------+--------------------------+-----------
            |                          |
        eth0|10.0.0.51             eth0|10.0.0.52
+-----------+----------+   +-----------+----------+
| [ node01.srv.world ] |   | [ node02.srv.world ] |
|     Worker Node#1    |   |     Worker Node#2    |
+----------------------+   +----------------------+

[1]

सभी नोड्स पर पूर्व-आवश्यकताओं को कॉन्फ़िगर करें, यहां देखें।

[2] Kubernetes क्लस्टर में शामिल हों जो Control Plane नोड पर आरंभीकृत है।
जुड़ने के लिए कमांड केवल एक [kubeadm join ***] है जो क्लस्टर के प्रारंभिक सेटअप पर परिणामों के नीचे दिखाया गया था।
root@node01:~#
kubeadm join 10.0.0.25:6443 --token 33l1jx.75weydwhz6elwdqw \
--discovery-token-ca-cert-hash sha256:fe7bab5af66756eb9516e4c51c072af4839509fa0d727a124ce8a9cbaafaf829

[preflight] Running pre-flight checks
[preflight] Reading configuration from the cluster...
[preflight] FYI: You can look at this config file with 'kubectl -n kube-system get cm kubeadm-config -o yaml'
[kubelet-start] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml"
[kubelet-start] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env"
[kubelet-start] Starting the kubelet
[kubelet-check] Waiting for a healthy kubelet. This can take up to 4m0s
[kubelet-check] The kubelet is healthy after 501.836091ms
[kubelet-start] Waiting for the kubelet to perform the TLS Bootstrap

This node has joined the cluster:
* Certificate signing request was sent to apiserver and a response was received.
* The Kubelet was informed of the new secure connection details.

Run 'kubectl get nodes' on the control-plane to see this node join the cluster.
# ठीक है यदि [यह नोड क्लस्टर में शामिल हो गया है]

[3] प्रबंधक नोड या क्लाइंट होस्ट पर स्थिति सत्यापित करें आपने क्लस्टर व्यवस्थापक फ़ाइल सेटअप की है। यदि सभी स्थिति तैयार हैं तो यह ठीक है।
root@ctrl:~#
kubectl get nodes

NAME               STATUS   ROLES           AGE     VERSION
dlp.srv.world      Ready    control-plane   9m18s   v1.30.1
node01.srv.world   Ready    <none>          73s     v1.30.1
node02.srv.world   Ready    <none>          31s     v1.30.1
मिलान सामग्री