模板支持使用弹性负载均衡的服务类型,其定义方法与社区一致。
若要在CCE界面上显示ELB服务类型的信息,需要在对应的资源类型模板中添加如下annotation,仅用于展示。
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: {{ .Release.Name }}-master
annotations:
"service.protal.kubernetes.io/access-ip": "10.4.4.14:8888"
"service.protal.kubernetes.io/type": LoadBalancer
spec:
……
表-关键参数说明
参数 | 参数说明 |
*annotations | 用于console展示,其中service.protal.kubernetes.io/access-ip代表ELB实例的IP及暴露的端口号。service.protal.kubernetes.io/type固定为LoadBalancer。 |