Skip to content

Commit

Permalink
feat(transparent-proxy): fixed data structure definition files
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Chen <1180092+jijiechen@users.noreply.github.com>
  • Loading branch information
jijiechen committed Mar 1, 2024
1 parent c040ebd commit b0110a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/generated/raw/protos/Dataplane.json
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
"type": "array",
"description": "List of reachable services (represented by the value of `kuma.io/service`) via transparent proxying. Setting an explicit list can dramatically improve the performance of the mesh. If not specified, all services in the mesh are reachable."
},
"ipv6_disabled": {
"ipv6_enabled": {
"type": "boolean",
"description": "Set if IPv6 traffic redirection is disabled by the user for the data plane proxy"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/generated/raw/protos/DataplaneOverview.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
"type": "array",
"description": "List of reachable services (represented by the value of `kuma.io/service`) via transparent proxying. Setting an explicit list can dramatically improve the performance of the mesh. If not specified, all services in the mesh are reachable."
},
"ipv6_disabled": {
"ipv6_enabled": {
"type": "boolean",
"description": "Set if IPv6 traffic redirection is disabled by the user for the data plane proxy"
}
Expand Down
10 changes: 5 additions & 5 deletions pkg/plugins/runtime/k8s/controllers/pod_converter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ var _ = Describe("PodToDataplane(..)", func() {
})
})

var _ = FDescribe("InboundTagsForService(..)", func() {
var _ = Describe("InboundTagsForService(..)", func() {
type testCase struct {
isGateway bool
zone string
Expand Down Expand Up @@ -696,7 +696,7 @@ var _ = FDescribe("InboundTagsForService(..)", func() {
)
})

var _ = FDescribe("MetricsAggregateFor(..)", func() {
var _ = Describe("MetricsAggregateFor(..)", func() {
type testCase struct {
annotations map[string]string
expected []*mesh_proto.PrometheusAggregateMetricsConfig
Expand Down Expand Up @@ -783,7 +783,7 @@ var _ = FDescribe("MetricsAggregateFor(..)", func() {
)
})

var _ = FDescribe("MetricsAggregateFor(..)", func() {
var _ = Describe("MetricsAggregateFor(..)", func() {
type testCase struct {
annotations map[string]string
expected string
Expand Down Expand Up @@ -820,7 +820,7 @@ var _ = FDescribe("MetricsAggregateFor(..)", func() {
)
})

var _ = FDescribe("ProtocolTagFor(..)", func() {
var _ = Describe("ProtocolTagFor(..)", func() {
type testCase struct {
appProtocol *string
annotations map[string]string
Expand Down Expand Up @@ -893,7 +893,7 @@ var _ = FDescribe("ProtocolTagFor(..)", func() {
)
})

var _ = FDescribe("Serviceless Name for(...)", func() {
var _ = Describe("Serviceless Name for(...)", func() {
type testCase struct {
pod string
replicaSets string
Expand Down
2 changes: 1 addition & 1 deletion pkg/xds/generator/transparent_proxy_generator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/kumahq/kuma/pkg/xds/generator"
)

var _ = FDescribe("TransparentProxyGenerator", func() {
var _ = Describe("TransparentProxyGenerator", func() {
type testCase struct {
proxy *model.Proxy
expected string
Expand Down

0 comments on commit b0110a5

Please sign in to comment.