Skip to content

Commit 200658e

Browse files
authored
Merge pull request #180 from aa1ex/tcp-proxy
filter chain for listener
2 parents fcd9c13 + 0d101ce commit 200658e

23 files changed

+604
-97
lines changed

api/v1alpha1/listener_methods.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package v1alpha1
22

33
import (
44
"bytes"
5-
"fmt"
65

76
listenerv3 "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
87
"github.com/kaasops/envoy-xds-controller/internal/protoutil"
@@ -28,9 +27,9 @@ func (l *Listener) UnmarshalV3AndValidate() (*listenerv3.Listener, error) {
2827
if err != nil {
2928
return nil, err
3029
}
31-
if len(listener.FilterChains) > 0 {
32-
return nil, fmt.Errorf("filter chains are not supported")
33-
}
30+
// if len(listener.FilterChains) > 0 {
31+
// return nil, fmt.Errorf("filter chains are not supported")
32+
// }
3433
return nil, listener.ValidateAll()
3534
}
3635

helm/charts/envoy-xds-controller/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: "0.69"
18+
version: "0.70"
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "v0.8.0"
24+
appVersion: "v0.9.0"
2525

2626
home: https://github.com/kaasops/envoy-xds-controller
2727
sources:

0 commit comments

Comments
 (0)