1、首先安装一下ansible yum install ansible 2、修改一下ansible的参数以防ssh过去的时候需要首次判断yes 或者no sed -i 's/#host_key_checking = False/host_key_checking = False/g' /etc/an ...
分类:
其他好文 时间:
2021-01-07 12:10:47
阅读次数:
0
vim mongodb.yaml apiVersion: apps/v1 kind: Deployment metadata: name: mongodb labels: app: mongodb spec: replicas: 1 selector: matchLabels: app: mongo ...
分类:
数据库 时间:
2021-01-07 11:58:16
阅读次数:
0
- name: 以轮询的方式等待服务同步完成 shell: "systemctl status etcd.service|grep Active" register: etcd_status until: '"running" in etcd_status.stdout' retries: 8 de ...
分类:
其他好文 时间:
2021-01-07 11:40:27
阅读次数:
0
delphi yaml https://github.com/lim417dev/Neslib.Yaml Neslib.Yaml - A YAML library for Delphi Neslib.Yaml is a library for parsing and emitting YAML an ...
yaml演示 unit Tests.Neslib.Yaml.Sample; interface uses DUnitX.TestFramework, Neslib.Yaml; type TestYamlSample = class private procedure CheckStream(cons ...
分类:
其他好文 时间:
2021-01-06 11:41:39
阅读次数:
0
#!/bin/bash data=`date '+%Y-%m-%d-%H-%M'` a=(`kubectl get deployments --all-namespaces |awk '{print $1}'| grep -v NAME`) ## 获取域名空间(NAMESPACE) b=(`kube ...
分类:
其他好文 时间:
2021-01-04 11:32:43
阅读次数:
0
yaml 中允许标识三种格式,分别为常量值、对象和数组 对象:键值对的集合,又称字典(dictionary)/哈希(hashes)/映射(mapping) 数组:一组按次序排列的值,又称序列(sequence)/列表(list) 常量值:单个,不可再分割的值 基本格式要求: 1.大小写敏感 2.使用 ...
分类:
其他好文 时间:
2021-01-04 11:26:57
阅读次数:
0
opentack heat orchestration template (HOT) 可以类比 k8s 的 yaml 文件,k8s 通过 yaml 文件实现编排, 通过 HOT yaml 文件实现 openstack 上的编排 openstack 版本 train 版 HOT hello world ...
分类:
其他好文 时间:
2021-01-02 10:37:17
阅读次数:
0
一、Ansible基础概述 1.1 什么是Ansible Ansible是一个IT自动化的配置管理工具,自动化主要体现在Ansible集成了丰富模块、丰富的功能组件,可以通过一个命令完成一系列的操作。进而减少我们重复性的工作和维护成本,以提高工作效率! 1.2 Ansible 可以完成哪些功能 批量 ...
分类:
其他好文 时间:
2021-01-01 12:13:49
阅读次数:
0
概述 今天主要分享一个批量ssh免密脚本,仅供参考。 需求 管理端有多台服务器,维护几百台服务器的时候需配置ssh免密,但密码很多特殊字符,如果用expect是很难处理的,故python脚本实现。 环境准备 1、安装fabric python3环境 pip install fabric 2、准备管理 ...
分类:
其他好文 时间:
2020-12-31 12:46:55
阅读次数:
0