顏值高
有完善的許可權發布控制功能
安裝簡單
功能較為完善
支援視覺化流水線編輯
# 關閉防火牆
systemctl stop firewalld.service
systemctl disable firewalld
firewall-cmd --reload
# 關閉selinux
setenforce 0 # 臨時
sed -i 's/enforcing/disabled/' /etc/selinux/config # 永久
#設定hostname
hostnamectl set-hostname k8s-master01
/etc/hosts新增一行內容:
47.115.183.185 k8s-master01
# 關閉swap
swapoff -a # 臨時
sed -ri 's/.*swap.*/#&/' /etc/fstab # 永久
# 將橋接的ipv4流量傳遞到iptables的鏈
cat > /etc/sysctl.d/k8s.conf << eof
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
eofsysctl --system # 生效
-----------------------------------同步機器時間-------------------------------
#安裝chrony
yum -y install chrony
#修改同步伺服器位址為阿里雲
sed -i.bak '3,6d' /etc/chrony.conf && sed -i '3cserver ntp1.aliyun.com iburst' \
/etc/chrony.conf
# 啟動chronyd及加入開機自啟
systemctl start chronyd && systemctl enable chronyd
#檢視同步結果
chronyc sources
# 解壓二進位製包、移動加壓檔案
tar zxvf docker-19.03.11.tgz
mv docker/* /usr/bin
# systemd管理docker
cat > /usr/lib/systemd/system/docker.service << eof
[unit]
documentation=
after=network-online.target firewalld.service
wants=network-online.target
[service]
type=notify
execstart=/usr/bin/dockerd
execreload=/bin/kill -s hup $mainpid
limitnofile=infinity
limitnproc=infinity
limitcore=infinity
timeoutstartsec=0
delegate=yes
killmode=process
restart=on-failure
startlimitburst=3
startlimitinterval=60s
[install]
wantedby=multi-user.target
eof#建立配置檔案
mkdir /etc/docker
cat > /etc/docker/daemon.json << eof
eof#啟動並設定開機啟動
systemctl daemon-reload
systemctl start docker
systemctl enable docker
#提前安裝一些工具包
yum install -y socat
yum install -y nfs-utils
yum install -y conntrack-tools
wget -c -o - | tar -xz
# 授權kubekey
chmod +x kk
# 安裝kubesphere3.0,這一步過程比較慢,大部分時間在拉取幾個g的映象
./kk create cluster --with-kubernetes v1.17.9 --with-kubesphere v3.0.0
注意:一定要完成kubesphere3.0最小化安裝安裝之後,才能進行各種外掛程式的安裝。
等待一段時間,看網速了
等待一段時間,看網速了
節點的運用和方法
jquery.parent expr 找父親節點,可以傳入expr進行過濾,比如 span parent 或者 span parent class jquery.parents expr 類似於jquery.parents expr 但是是查詢所有祖先元素,不限於父元素 jquery.childre...
Kafka 單節點單Kafka Broker集群
tar zxvf kafka 2.12 0.10.2.1.tgz cd kafka 2.12 0.10.2.1 bin zookeeper server start.sh config zookeeper.properties bin kafka server start.sh config ser...
單鏈表刪節點
題目 只給定鍊錶中的節點node,不給頭結點,如何在鍊錶中刪除node?實現這個函式,要求時間複雜度o 1 思路 該題當然是說單鏈表,如果雙鏈表就很容易了。比如單鏈表 1 2 3 4 5.現在只知道節點node 3,如何將其刪除。把節點4的值拷貝到節點3,然後刪除節點4 即node.next拷貝到n...