事务
比如说将张三的银行账户拿出一千给李四,首先需要查询张三的账户余额,扣除1000,然后如果给李四加上1000的过程中出现异常会回滚事务,临时修改的数据会回复回去。
-- 1. 查询张三账户余额
select * from account where name …
如何在k8s的任意节点使用用kubectl
# 正常在node节点上是无法执行kubectl命令
[rootk8s-node-01 ~]# kubectl get pods
The connection to the server localhost:8080 was refused - did you specify the right host or port?1、将master节点中/etc/kubernetes/,admin.conf拷…