群晖必装软(二)-docker安装openwrt做旁路由使用教程
1、群晖安装docker详细教程参考:https://www.stellardata.top/2515.html2、群晖打开ssh远程登录进入群晖控制面板开启 ssh,端口号自己随便填,也可以使用默认22端口号ssh登录群晖后台下载 ssh 工...
Red Hat8.0安装k8s之后的适配问题
红帽8.0操作系统安装完k8s之后,nodelocadns容器启动失败报错信息:Failed to setup - error checking rule: exit status 3: Notice: The NOTRACK target is converted into CT target in rule ...
k8s组件kube-schedule报错,启动失败
kube-schedule组件启动报错:报错信息:container create failed: container_linux.go:338: creating new parent process caused 'container_linux.go:1897: running lstat on namespace path \...
使用helm命令安装chart包报错
报错详情:Error: Internal error occurred: failed calling webhook 'prometheusrulemutate.monitoring.coreos.com': Post https://monitoring-prometheus-oper-operator.monitoring.svc:443/a...
glusterfs存储扩容
GFS存储扩容分为两种情况:1.新增GlusterFS节点将新增的节点加入到GlusterFS集群# 在原来GlusterFS集群某个节点上面执行 gluster peer probe {新节点IP}2. 新增硬盘,存储扩容1)原有GlusterFS...
运维工具Ventory
一、安装启动盘Ventory工具优点:常见的大白菜、u大师装机都只能用于安装自己家里的pc机,不能用于服务器安装操作系统,服务器无法识别,常见安装服务器的方式是使用刻盘工具,将需要安装的操作...
mysql备份脚本
vim backup_mysqldata.sh #!/bin/bash # gzszwy计划任务,每天中午12点执行备份工作: 00 12 * * * bbders sh /home/gzszwy/shell/backup_mysqldata.sh if test ! -d /data/backup/mysql;then mk...
k8s集群使用firewalld
众所周知,安装k8s都会要求你关闭firewalld防火墙,但是有些单位的重要系统,要求使用防火墙进行防护,需要在k8s集群中使用firewalld,请执行以下命令,每台机器都需要执行;systemctl start fi...
单节点备份etcd
一、备份脚本需要修改 #!/bin/bash DATA=`date +%y%m%d` BACUPDIR=/home/etcd_back/ ENDPOINTS='https://10.36.252.165:2379' cert_file=/etc/ssl/etcd/ssl/node-gzbh-intelmbx027.gzbh.baidu.c...
K8s CNI 网络对比:Flannel、Calico、Canal 和 Weave
一、介 绍网络架构是 Kubernetes 中较为复杂、让很多用户头疼的方面之一。Kubernetes 网络模型本身对某些特定的网络功能有一定要求,但在实现方面也具有一定的灵活性。因此,业界已有不少不同的...