阿里云使用日记
文章平均质量分 54
大鹅i
这个作者很懒,什么都没留下…
展开
-
K8s集群 实现集群业务是否对外暴露的控制 (多LB实施方案)
架构图:1.新建集群会自动创建一个公网的LB,需要新创建一个内网LB绑定在此nginx controller 上,实现内网访问pod的目的。2.新建专属内网的nginx controller 绑定内网LB只对内网提供服务,并且修改默认的ingress.class标签参考网址:https://help.aliyun.com/document_detail/151506.html查看集群现存lb 新建集群LB服务 (推荐)方式一:集群服务 > 网络 > 服务 > 选择nginx-controller所在命名空间原创 2022-06-27 16:22:22 · 1728 阅读 · 1 评论 -
阿里云多网卡HTTP代理部署脚本
#!/bin/bash # author HAITAO # time 2022/4/27 ## for 单实例多网卡配置,独立出口ip代理 ## 脚本属于半定制化,按需修改函数区域 stty erase ^H # ----------函数区---------- ###配置基础信息函数 function init { ##请提前定义网卡基础信息 #网卡名 eval echo "请输入网卡名!" && read eth_name echo ${eth_name} #网卡MAC地址 ev原创 2022-04-28 15:28:55 · 740 阅读 · 0 评论