04 2020 档案

摘要:https://goharbor.io/docs/1.10/install-config/configure-https/ 默认情况下,Harbor不提供证书。可以在没有安全性的情况下部署Harbor,这样您就可以通过HTTP连接到它。但是,只有在没有连接到外部internet的空间隙测试或开发环境 阅读全文
posted @ 2020-04-30 19:47 linuxws 阅读(4010) 评论(1) 推荐(1) 编辑
摘要:[root@localhost data]# unzip harbor-master.zip ^C [root@localhost data]# cd harbor-master [root@localhost harbor-master]# ls ADOPTERS.md CHANGELOG.md 阅读全文
posted @ 2020-04-30 16:58 linuxws 阅读(1273) 评论(1) 推荐(2) 编辑
摘要:1、playbook基础组件: hosts playbook中的每一个paly的目的都是为了让某个或某些以某个指定用户的身份执行任务。hosts用于指定要执行指定任务的主机,其可以是一个或多个由冒号分割主机组。 user remote_user则用于指定远程主机上的执行任务的用户。 任务列表: pl 阅读全文
posted @ 2020-04-29 20:24 linuxws 阅读(438) 评论(0) 推荐(0) 编辑
摘要:基本语法 大小写敏感 使用缩进表示层级关系 缩进不允许使用tab,只允许空格 缩进的空格数不重要,只要相同层级的元素左对齐即可 '#'表示注释 数据类型 YAML 支持以下几种数据类型: 对象:键值对的集合,又称为映射(mapping)/ 哈希(hashes) / 字典(dictionary) 数组 阅读全文
posted @ 2020-04-29 18:35 linuxws 阅读(169) 评论(0) 推荐(0) 编辑
摘要:// -v 是看运行细节。要更细节的信息,把-v换成 -vvv // myhost 是我们自己写的host文件。也就是说,我们不一定要用/etc/ansible/hosts那个文件。 // -e 是传参到yml文件里面 ansible的渲染是依赖于jinja2的。 所以yml文件里面都是用花括号,表 阅读全文
posted @ 2020-04-29 18:19 linuxws 阅读(1078) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/tylerzhou/p/11133115.html https://www.cnblogs.com/zhangb8042/p/11357584.html https://www.jianshu.com/p/4bd853a8068b https://bl 阅读全文
posted @ 2020-04-28 19:50 linuxws 阅读(121) 评论(0) 推荐(0) 编辑
摘要:https://baijiahao.baidu.com/s?id=1658762189755959240&wfr=spider&for=pc 报错:0/3 nodes are available: 1 node(s) had taints that the pod didn't tolerate, 阅读全文
posted @ 2020-04-28 19:43 linuxws 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-04-27 19:02 linuxws 阅读(136) 评论(0) 推荐(0) 编辑
摘要:首先打开数据库 ~~# sqlite3 /var/lib/grafana/grafana.db 然后修改user表中admin用户的密码 #查看数据库中包含的表 ~~# .tables #查看user表内容 ~~# select * from user; #重置admin用户的密码为默认admin 阅读全文
posted @ 2020-04-23 18:53 linuxws 阅读(8771) 评论(0) 推荐(0) 编辑
摘要:ImportError: No module named 'requests.packages.urllib3' 解决方法 https://www.xiaomastack.com/2015/04/17/docker-py/ docker-py是访问docker api的一个python模块,该模块可 阅读全文
posted @ 2020-04-22 16:55 linuxws 阅读(1716) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/u012421852/article/details/51813411 https://www.cnblogs.com/wjoyxt/p/4815782.html https://www.jianshu.com/p/2237f029c385 #!/bin/ 阅读全文
posted @ 2020-04-15 16:09 linuxws 阅读(241) 评论(0) 推荐(0) 编辑
摘要:下载链接:https://pan.baidu.com/s/1a2qDWdZdGtdMLxzjiKLWLA 密码:0ykm 2、下载的文件是文件夹secureCRT包含 3-14、打开scrt-7.3.0-657.osx_x64.dmg,点击agree,把SecureCRT.app挪到应用程序中(注意 阅读全文
posted @ 2020-04-15 14:04 linuxws 阅读(7288) 评论(1) 推荐(2) 编辑
摘要:Homebrew官网:https://brew.sh/index_zh-cn.html $ git config --global http.postBuffer 524288000$ git config --global https.postBuffer 524288000 一键安装: /bin 阅读全文
posted @ 2020-04-14 16:25 linuxws 阅读(1313) 评论(0) 推荐(0) 编辑
摘要:node 物理机、虚拟机 pod 多个容器和卷组成的容器组 阅读全文
posted @ 2020-04-14 16:22 linuxws 阅读(140) 评论(0) 推荐(0) 编辑
摘要:Kubernetes 查看node // 查看所有节点及labels kubectl get nodes --show-labels 删除节点的labels # 语法 kubectl label nodes <node-name> <label-key>- 给节点添加labels # 语法 kube 阅读全文
posted @ 2020-04-08 17:04 linuxws 阅读(4156) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/sunhao96/p/7692147.html 使用文件快照的方式实现文件备份,但单说快照(snapshot)的话,他是某一时间点(版本)你能看到的该时间点备份文件状态的全貌,通过文件的快照(全貌)你能恢复到特定时间点(版本)的文件状态。 创建虚拟机s 阅读全文
posted @ 2020-04-03 16:36 linuxws 阅读(601) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/zy-303/p/9930353.html 阅读全文
posted @ 2020-04-03 16:22 linuxws 阅读(191) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/superlsj/p/11610517.html 引言: ①、分区的方式 a)mbr分区: 最多支持四个主分区、系统只能安装在主分区、扩展分区要占一个主分区、MBR最大支持2TB,但拥有最好的兼容性 b)gtp分区: 支持无限多个主分区(说是这么说,但 阅读全文
posted @ 2020-04-02 13:29 linuxws 阅读(188) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示