11 2023 档案
摘要:需要在cmd中执行 wsl.exe --install --no-distributionwsl --import rocky9 D:\rocky9 D:\Rocky-9-Container-Base.latest.x86_64.tar.xz
阅读全文
摘要:https://blog.51cto.com/u_16099262/6928212 https://blog.csdn.net/easylife206/article/details/125093122 https://github.com/containers/skopeo 1 安装 dnf -y
阅读全文
摘要:一. Docker-compose部署ldap 参考:https://blog.csdn.net/yhl18931306541/article/details/128253735 1.部署服务端 docker run \ -d \ -p 389:389 \ -p 636:636 \ -v /usr/
阅读全文
摘要:1.yaml文件部署 version: '3' services: rancher: image: rancher/rancher:stable privileged: true restart: always container_name: rancher volumes: - ./data:/v
阅读全文
摘要:只对11个GPU节点进行监控 方法1,使用kubectl top node获取资源信息,然后定时写入文件1.txt #!/bin/bash x=(gpu-node001 gpu-node002 gpu-node003 gpu-node004 gpu-node005 gpu-node006 gpu-n
阅读全文
摘要:参考:https://www.cnblogs.com/vmsky/p/16294864.html #查看命名空间 ctr namespaces ls #查看镜像列表 ctr -n k8s.io image ls #给镜像打标签 [root@k8s-m1 ~]# ctr -n k8s.io image
阅读全文
摘要:influx 进入命令行 influx -version 查看版本 show databases: 显示所有数据库 drop database "db_name" 删除数据库 use db_name: 使用数据库 show measurements: 查看该数据库下所有的表
阅读全文