欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

N1 搭建 arm64 架构 k8s 集群

程序员文章站 2024-03-08 18:01:04
...
  1. 设置静态ip地址

备份 /etc/network/interfaces 文件,并打开

cp /etc/network/interfaces /etc/network/interfaces.backup
sudo nano /etc/network/interfaces

按照下列内容进行编辑

# Wired adapter 0
allow-hotplug eth0
#no-auto-down eth0
iface eth0 inet static
address 192.168.0.81
netmask 255.255.255.0
gateway 192.168.0.1
dns-nameservers 192.168.0.1
#dns-nameservers 1.1.1.1 1.0.0.1

将5个节点的N1依次编辑完成后进行保存并reboot设备,然后验证网络连通性

  1. 编辑/etc/hosts 文件
    文件内原本内容不要做任何更改,在下方另起一行重新开始
    分别在每台节点各自的 IP 地址后加上 localhost 字样,以 192.168.0.81 为例:
192.168.01.81 localhost phicomm-n1-peer01
192.168.01.82 phicomm-n1-peer02
192.168.01.83 phicomm-n1-peer03
192.168.01.84 phicomm-n1-peer04
192.168.01.85 phicomm-n1-peer05

其他节点依次类推,完成后保存退出,直至全部完成。

未完待续……

参考链接:

https://sbilly.github.io/post/howto-setup-kubernetes-cluster-on-armbian-linux-based-on-phicomm-n1-arm64-sbc/

https://www.albertogonzalez.net/how-to-set-a-static-ip-on-armbian/