上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 66 下一页
摘要: 1.Swagger 多分组 在很多大型系统中,为了方便对接口进行归类,往往使用了 Swagger 多分组功能,这样会使系统的接口散落在多个 swagger.json 中。 将SpecificationDocumentSettings属性的EnableAllGroups设置为true。 启用之后在 S 阅读全文
posted @ 2023-04-02 14:10 SpringCore 阅读(436) 评论(0) 推荐(1) 编辑
摘要: 1.表T(a,b,c,d),要根据字段c排序后取第21—30条记录显示,请给出sql select * from T order by c [desc] limit 20,10 2.表T(a,b,c,d)和表T1(a1,b1,c1,d1),表T中a字段是T1中的a1的外键,请用T1表中的c1,d1更 阅读全文
posted @ 2023-03-27 16:04 SpringCore 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 本文章是 k8s二进制高可用集群部署 的分支。详细步骤请参考目录。 k8s的LoadBalancer类型的Service依赖于外部的云提供的Load Balancer。 当我们把k8s部署在裸机上面时,或者是测试环境时,需要简单的LoadBalancer来验证工作. 目前开源市场有三款知名的负载均衡 阅读全文
posted @ 2023-03-04 11:25 SpringCore 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 1.Command error output: xtables parameter problem: iptables-restore: unable to initialize table 'nat' Failed to execute: iptables-restore --noflush /t 阅读全文
posted @ 2023-03-02 20:35 SpringCore 阅读(1170) 评论(0) 推荐(0) 编辑
摘要: 1.部署 Bookinfo 示例应用 cd /home/istio-1.17.1 kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml service/details created serviceaccount/bookinfo 阅读全文
posted @ 2023-03-01 12:26 SpringCore 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 官方github:https://github.com/istio/istio 官方部署介绍文档:https://istio.io/latest/zh/docs/setup/getting-started/ 1.下载istio curl -L https://istio.io/downloadIst 阅读全文
posted @ 2023-02-27 13:44 SpringCore 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 本文章是 k8s二进制高可用集群部署 的分支。详细步骤请参考目录。 1.关闭防火墙 systemctl stop firewalld #临时 systemctl disable firewalld #永久 2.关闭SeLinux sed -i 's/enforcing/disabled/' /etc 阅读全文
posted @ 2023-02-25 21:42 SpringCore 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 本文章是 k8s二进制高可用集群部署 的分支。详细步骤请参考目录。 Kubernetes集群高可用性包含以下两个层面的考虑: Etcd数据库的高可用性 Kubernetes Master组件的高可用性 Master节点扮演着总控中心的角色,通过不断与工作节点上的Kubelet和kube-proxy进 阅读全文
posted @ 2023-02-24 21:48 SpringCore 阅读(2339) 评论(0) 推荐(0) 编辑
摘要: 本文章是 k8s二进制高可用集群部署 的分支。详细步骤请参考目录。 1.etcd扩容 **如果etcd通过CA生成的证书不包含当前节点的ip,可能etcd集群需要重新生成证书。 1.复制相关文件 scp /opt/etcd/{cfg,ssl} root@192.168.64.131:/opt/etc 阅读全文
posted @ 2023-02-24 17:04 SpringCore 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 本文章是 k8s二进制高可用集群部署 的分支。详细步骤请参考目录。 CoreDNS用于集群内部Service名称解析 部署 CoreDNS 需要使用到官方提供的两个文件 deploy.sh 和 coredns.yaml.sed(这两个文件已经放入 manifest 的 coredns 目录中) de 阅读全文
posted @ 2023-02-24 15:34 SpringCore 阅读(2114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 66 下一页