上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 56 下一页
摘要: Ingress介绍 kubernetes使用Ingress控制器作为统一的流量入口,管理内部各种必要的服务,并通过Ingress API资源来描述如何区分流量以及内部的路由逻辑。可以通过Ingress和Ingress控制器定义路由流量的规则来完成服务发布,而无须创建一堆NodePort或LoadBa 阅读全文
posted @ 2023-02-27 12:54 小吉猫 阅读(143) 评论(0) 推荐(0) 编辑
摘要: nginx nginx.conf server { listen 80; server_name localhost; location / { root /apps/nginx/wordpress; index index.php index.html index.htm; } location 阅读全文
posted @ 2023-02-23 17:38 小吉猫 阅读(130) 评论(0) 推荐(0) 编辑
摘要: jenkins-namespace.yaml apiVersion: v1 kind: Namespace metadata: name: wgs-jenkins jenkins-persistentvolume.yaml apiVersion: v1 kind: PersistentVolume 阅读全文
posted @ 2023-02-21 16:34 小吉猫 阅读(148) 评论(0) 推荐(1) 编辑
摘要: 内容示例 FIRMWARE_VER:7.1 MACHINE_MODEL: rk3288 MACHINE_ID:007 MANUFACTURER:RK3288 MAGIC: 0x5041524B ATAG: 0x60000800 MACHINE: 3288 CHECK_MASK: 0x80 PWR_H 阅读全文
posted @ 2023-02-16 14:17 小吉猫 阅读(69) 评论(0) 推荐(1) 编辑
摘要: 数据导出 导出数据格式 openethereum [options] export blocks --format=[FORMAT] --from=[BLOCK] --to=[BLOCK] [FILE] 停止服务 # systemctl stop openethereum 导出数据 # ./open 阅读全文
posted @ 2023-02-16 11:14 小吉猫 阅读(293) 评论(0) 推荐(0) 编辑
摘要: Prometheus template variables Name Description Used API endpoints label_names() 返回标签名称列表。 /api/v1/labels label_values(label) 返回每个指标中的标签值列表label。 /api/ 阅读全文
posted @ 2023-01-31 11:39 小吉猫 阅读(389) 评论(1) 推荐(0) 编辑
摘要: 启用metrics openethereum --jsonrpc-interface 0.0.0.0 --jsonrpc-cors all --reseal-max-period 60000000 --metrics --metrics-interface=all 2023-01-30 11:33: 阅读全文
posted @ 2023-01-31 11:26 小吉猫 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 环境要求 内存:16-32 GB CPU:4-8核CPU(t3 xLarge) 存储:至少 650GB SSD(确保它是可扩展的) 安装环境依赖 安装编译环境 ~# sudo apt-get install build-essential -y 安装go ~# wget https://dl.goo 阅读全文
posted @ 2023-01-20 17:24 小吉猫 阅读(1484) 评论(0) 推荐(0) 编辑
摘要: Dockerfile FROM node:16.14.2 RUN mkdir /data/apps -pv \ && npm -g i pnpm@7.9.5 \ && npm -g i pm2 WORKDIR /data/apps COPY . . RUN pnpm install \ && pnp 阅读全文
posted @ 2023-01-19 17:38 小吉猫 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 部署prysm 下载prysm mkdir -pv /data/prysm && cd /data/prysm curl https://raw.githubusercontent.com/prysmaticlabs/prysm/master/prysm.sh --output prysm.sh & 阅读全文
posted @ 2023-01-17 14:43 小吉猫 阅读(1410) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 56 下一页