摘要: 交易所 服务 下单、撮合、行情、结算、清算 出金和入金 对于交易所来说: 入金,就是把钱存到账户里去。 出金,就是把钱从账户中取出来。 撮合 Maker / Taker Broker 券商 Depth 深度 Pair 交易对,如 USDTBTH, 一个比特币能购买多少USDT. Orderbook 阅读全文
posted @ 2022-10-31 09:35 608088 阅读(182) 评论(0) 推荐(0) 编辑
摘要: Notes https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.6.1/ 高可用 high-availability.yaml 单机 component.yaml apiserver 修改apiserver.y 阅读全文
posted @ 2022-10-16 10:05 608088 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 准备环境 Install truffle 启动 mkdir hello cd hello # truffle compile 编译合约 # truffle console 进入命令行交互模式,合成合约需要在这个交互模式下 # truffle migrate 在命令行交互模式中,合成合约 truffl 阅读全文
posted @ 2022-10-15 20:30 608088 阅读(46) 评论(0) 推荐(0) 编辑
摘要: Prerequist gcc-c++, glibc-2.18 yum -y install gcc-c++ wget http://ftp.gnu.org/gnu/glibc/glibc-2.18.tar.gz tar -xvf glibc-2.18.tar.gz cd glibc-2.18 mkd 阅读全文
posted @ 2022-10-15 17:35 608088 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Install wget https://nodejs.org/dist/v16.18.0/node-v16.18.0-linux-x64.tar.xz xz -d node-v16.18.0-linux-x64.tar.xz tar -xf node-v16.18.0-linux-x64.tar 阅读全文
posted @ 2022-10-15 17:08 608088 阅读(35) 评论(0) 推荐(0) 编辑
摘要: service 提供相同服务的一组pod可以抽象成一个service, 固定IP - 对外提供服务的统一入口,每个service都有一个虚拟IP地址(VIP, clusterIP)和端口号供客户端访问。由于Pod重建等原因导致的pod ip地址变化, service始终保持对外ip端口不变 负载分发 阅读全文
posted @ 2022-08-17 08:33 608088 阅读(46) 评论(0) 推荐(0) 编辑
摘要: Overview Store encrypted/encoded environments information in k8s. echo -n xxx|base64 to generate base64 string. both data / stringData stringData is p 阅读全文
posted @ 2022-08-05 19:03 608088 阅读(43) 评论(0) 推荐(0) 编辑
摘要: Yaml apiVersion: v1 kind: Namespace metadata: name: dev Command create namespace ns1 Operation kubectl get ns 阅读全文
posted @ 2022-08-04 21:18 608088 阅读(42) 评论(0) 推荐(0) 编辑
摘要: Preparation Containerd Image preparation 制作Containerd镜像 Deployment with rolling update preparation apiVersion: apps/v1 kind: Deployment metadata: name 阅读全文
posted @ 2022-07-20 15:10 608088 阅读(29) 评论(0) 推荐(0) 编辑
摘要: Node master distribute application to worker nodes. self healing. it monitors running status of pod which hosts application, it starts a new pod if ex 阅读全文
posted @ 2022-07-18 10:51 608088 阅读(69) 评论(0) 推荐(0) 编辑