Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions incubator/tke-extend-network-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.4.1
version: 2.4.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 2.4.1
appVersion: 2.4.2
kubeVersion: '>= 1.26.0-0'
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ spec:
- hostnames:
- clb.tencentcloudapi.com
- vpc.tencentcloudapi.com
- cam.tencentcloudapi.com
ip: 169.254.0.95
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,37 @@ spec:
- InOrder
- Random
type: string
listenerPrecreate:
description: |-
监听器预创建,预先为 lb 创建一些固定的监听器,不销毁,用于加快扩缩容时 CLB 的绑定和解绑速度。


注意:预创建监听器的端口池只支持 TCP 和 UDP 协议(不支持 TCP_SSL 和 QUIC)。
properties:
enabled:
description: 是否启用监听器预创建
type: boolean
x-kubernetes-validations:
- message: Value is immutable
rule: self == oldSelf
tcp:
description: TCP 监听器预创建数量
type: integer
x-kubernetes-validations:
- message: Value is immutable
rule: self == oldSelf
udp:
description: UDP 监听器预创建数量
type: integer
x-kubernetes-validations:
- message: Value is immutable
rule: self == oldSelf
required:
- enabled
type: object
x-kubernetes-validations:
- message: Value is immutable
rule: self == oldSelf
listenerQuota:
description: |-
监听器数量配额。仅用在单独调整了指定 CLB 实例监听器数量配额的场景(TOTAL_LISTENER_QUOTA),
Expand Down
8 changes: 8 additions & 0 deletions incubator/tke-extend-network-controller/templates/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,11 @@ rules:
- get
- patch
- update
- apiGroups:
- node.tke.cloud.tencent.com
resources:
- machines
verbs:
- get
- list
- watch
Loading