This is an automated email from the ASF dual-hosted git repository.
zhongxjian pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-kubernetes.git
The following commit(s) were added to refs/heads/master by this push:
new 737bfb0b fix workflow ci v2
737bfb0b is described below
commit 737bfb0b8bde810717ab065ebec9721d1fb7fd6f
Author: mfordjody <[email protected]>
AuthorDate: Sun Jun 1 09:07:54 2025 +0800
fix workflow ci v2
---
pkg/xds/bootstrap/template_v3.go | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/pkg/xds/bootstrap/template_v3.go b/pkg/xds/bootstrap/template_v3.go
index 5fbc406b..18a6a156 100644
--- a/pkg/xds/bootstrap/template_v3.go
+++ b/pkg/xds/bootstrap/template_v3.go
@@ -78,8 +78,8 @@ func genConfig(parameters configParameters, proxyConfig
xds.Proxy, enableReloada
Name: "dubbo",
LayerSpecifier: &envoy_bootstrap_v3.RuntimeLayer_StaticLayer{
StaticLayer:
util_proto.MustStruct(map[string]interface{}{
- "re2.max_program_size.error_level": 4294967295,
- "re2.max_program_size.warn_level": 1000,
+ "re2.max_program_size.error_level":
float64(4294967295),
+ "re2.max_program_size.warn_level":
float64(1000),
}),
},
}}
@@ -196,7 +196,7 @@ func genConfig(parameters configParameters, proxyConfig
xds.Proxy, enableReloada
},
},
StaticResources: &envoy_bootstrap_v3.Bootstrap_StaticResources{
- //Secrets: []*envoy_tls.Secret{
+ // Secrets: []*envoy_tls.Secret{
// {
// Name: tls.CpValidationCtx,
// Type:
&envoy_tls.Secret_ValidationContext{
@@ -210,7 +210,7 @@ func genConfig(parameters configParameters, proxyConfig
xds.Proxy, enableReloada
// },
// },
// },
- //},
+ // },
Clusters: staticClusters,
},
DefaultRegexEngine: &envoy_core_v3.TypedExtensionConfig{
@@ -223,14 +223,14 @@ func genConfig(parameters configParameters, proxyConfig
xds.Proxy, enableReloada
transport := &envoy_tls.UpstreamTlsContext{
Sni: parameters.XdsHost,
CommonTlsContext: &envoy_tls.CommonTlsContext{
- //TlsParams: &envoy_tls.TlsParameters{
+ // TlsParams: &envoy_tls.TlsParameters{
// TlsMinimumProtocolVersion:
envoy_tls.TlsParameters_TLSv1_2,
- //},
- //ValidationContextType:
&envoy_tls.CommonTlsContext_ValidationContextSdsSecretConfig{
- //ValidationContextSdsSecretConfig:
&envoy_tls.SdsSecretConfig{
+ // },
+ // ValidationContextType:
&envoy_tls.CommonTlsContext_ValidationContextSdsSecretConfig{
+ // ValidationContextSdsSecretConfig:
&envoy_tls.SdsSecretConfig{
// Name: tls.CpValidationCtx,
- //},
- //},
+ // },
+ // },
},
}
any, err :=
util_proto.MarshalAnyDeterministic(transport)