Helm 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # 添加一个chart库 helm repo add elastic https://helm.elastic.co # 从chart存储库更新信息 helm repo update # 查找chart helm search repo prometheus # 下载chart helm pull
一、部署Dashboard 1.1 部署 1 2 3 GITHUB_URL=https://github.com/kubernetes/dashboard/releases VERSION_KUBE_DASHBOARD=$(curl -w '%{url_effective}' -I -L -s -S ${GITHUB_URL}/latest -o /dev/null | sed -e 's|.*/||') kubectl create -f https://raw.githubusercontent.com/kubernetes/dashboard/$VERSION_KUBE_DASHBOARD/aio/deploy/recommended.yaml 1.2 RBAC 配置创建以下资源清单文件 dashboard.yaml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
一、安装NFS服务器安装nfs服务器 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 # nfs server for centos8 dnf install nfs-utils $ sudo cat > /etc/exports << EOF /data/k8s_data/ 192.168.0.100/24(rw,sync,no_root_squash,no_all_squash,no_acl) EOF # 启动nfs systemctl start nfs-server.service systemctl enable nfs-server.service systemctl status nfs-server.service # 检查
在线安装 K3sK3s 通过 环境变量 和 选项 来定制安装。当然也支持配置文件方式。 对于 /var/lib/rancher/k3s/server/manifests 下的任何 yaml 文件(coredns、traefik、local-store
背景 在比特币网络中,如何快速避免交易的重复验证,提高效率? 在大规模数据处理中,如何过滤掉不必要的数据,提高查询速度和减少网络带宽的占用? 在R
创建 Create 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 -- 创建 t1 表,表结构与 t2 一样 CREATE TABLE t1 LIKE t2; -- 修改表的存储引擎 ALTER TABLE t1 ENGINE = InnoDB; -- 创建临时表 CREATE TEMPORARY TABLE temp_t LIKE t1; -- 插入数据 INSERT INTO