码迷,mamicode.com
首页 >  
搜索关键字:ansible playbook node    ( 29958个结果
leetcode 116 填充每个节点的下一个右侧节点指针
/* // Definition for a Node. class Node { public: int val; Node* left; Node* right; Node* next; Node() : val(0), left(NULL), right(NULL), next(NULL) { ...
分类:其他好文   时间:2021-03-31 12:27:25    阅读次数:0
使用nodejs判断前端性能
前提:安装node.js 1、监控工具:# npm install clinic -g 2、压测工具:# npm i autocannon -g 3、使用监控工具启动前端服务:# clinic doctor -- node server.js 4、使用压测工具压测(并发100持续20秒):# aut ...
分类:Web程序   时间:2021-03-31 11:53:36    阅读次数:0
9.ansible 循环功能和忽略错误
在剧本中设置循环信息 vim test04.yml hosts: all remote_user: root tasks: name: Add Users user: name={{ item.name }} groups={{ item.groups }} state=present with_i ...
分类:其他好文   时间:2021-03-31 11:52:29    阅读次数:0
Pod状态Terminating
背景: Pod处于Terminating 排查: 1、kubectl delete pod pod名 依旧是无法拉为Running状态 2、kubectl get node 输出显示两个Node是NotReady 3、两个节点ip可ping通,登陆到节点上执行 systemctl restart d ...
分类:其他好文   时间:2021-03-30 13:49:24    阅读次数:0
[Node.js] Resolve path problem in all envs (require.resolve)
When dealing with `fs` library, the common problem you will meet is the path to file. Different envs may have different way to handle the path. The be ...
分类:Web程序   时间:2021-03-30 13:42:21    阅读次数:0
ansible_配置介绍
文档链接 https://docs.ansible.com/ansible/latest/reference_appendices/config.html 配置文件 [defaults] inventory = /etc/ansible/hosts sudo_user=root remote_por ...
分类:其他好文   时间:2021-03-30 13:37:18    阅读次数:0
Prometheus【node_exporter】+grafana监控云主机
下面说一下这个开源软件的安装实践过程,目标如下: 在监控服务器上安装prometheus 在被监控环境上安装exporter 安装grafana 在监控服务器上安装prometheus 开始安装prometheus,首先先去官网下载对应系统的版本:https://prometheus.io/down ...
分类:其他好文   时间:2021-03-30 13:21:49    阅读次数:0
使用ABSL(ABAP Script Language)完成SAP Cloud for Customer里Customer Quote以及行项目的增删改查
The user roles are Studio Administrator, Developer, and Business User. PDI_ADMINISTRATION / Administration PDI_DEVELOPMENT / Development 对于Sales Order ...
分类:其他好文   时间:2021-03-30 12:51:45    阅读次数:0
二叉树遍历系列总结
# Definition for a binary tree node. # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None # 递归 # 时间复杂度:O(n ...
分类:其他好文   时间:2021-03-29 12:51:26    阅读次数:0
二叉树中和为某一值的路径
输入一棵二叉树和一个整数,打印出二叉树中节点值的和为输入整数的所有路径。从树的根节点开始往下一直到叶节点所经过的节点形成一条路径; /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode * ...
分类:其他好文   时间:2021-03-29 12:41:37    阅读次数:0
29958条   上一页 1 ... 26 27 28 29 30 ... 2996 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!