diff options
| author | luomengY <2938893385@qq.com> | 2023-11-16 22:35:50 +0800 |
|---|---|---|
| committer | luomengY <2938893385@qq.com> | 2023-11-22 19:10:08 +0800 |
| commit | 66d77a99443556d0ad412b0d6111e977eda485d3 (patch) | |
| tree | 5934e2f59a0b65a08ac02247c386dadf91cf150d /manifests | |
| parent | Merge pull request #5157 from zhiyingfang2022/fzy1108 (diff) | |
| download | kubeedge-66d77a99443556d0ad412b0d6111e977eda485d3.tar.gz | |
fix quic server ip
Signed-off-by: luomengY <2938893385@qq.com>
Diffstat (limited to 'manifests')
| -rw-r--r-- | manifests/charts/cloudcore/templates/configmap_cloudcore.yaml | 4 | ||||
| -rw-r--r-- | manifests/charts/cloudcore/values.yaml | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml b/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml index 4c2b99eb1..9edc48f78 100644 --- a/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml +++ b/manifests/charts/cloudcore/templates/configmap_cloudcore.yaml @@ -32,12 +32,12 @@ data: websocket: address: 0.0.0.0 enable: {{ .Values.cloudCore.modules.cloudHub.websocket.enable }} - port: 10000 + port: {{ .Values.cloudCore.modules.cloudHub.websocket.port }} quic: address: 0.0.0.0 enable: {{ .Values.cloudCore.modules.cloudHub.quic.enable }} maxIncomingStreams: {{ .Values.cloudCore.modules.cloudHub.quic.maxIncomingStreams }} - port: 10001 + port: {{ .Values.cloudCore.modules.cloudHub.quic.port }} https: address: 0.0.0.0 enable: {{ .Values.cloudCore.modules.cloudHub.https.enable }} diff --git a/manifests/charts/cloudcore/values.yaml b/manifests/charts/cloudcore/values.yaml index 04cc54a25..ac88a9376 100644 --- a/manifests/charts/cloudcore/values.yaml +++ b/manifests/charts/cloudcore/values.yaml @@ -43,8 +43,10 @@ cloudCore: - "" nodeLimit: "1000" websocket: + port: 10000 enable: true quic: + port: 10001 enable: false maxIncomingStreams: "10000" https: |
