Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Envoy version and cp version in Enforcer #2026

Merged
merged 3 commits into from
Mar 5, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -334,10 +334,13 @@ func CreateRateLimitCluster() (*clusterv3.Cluster, []*corev3.Address, error) {
upstreamTLSContext.CommonTlsContext.ValidationContextType = &tlsv3.CommonTlsContext_ValidationContext{
ValidationContext: &tlsv3.CertificateValidationContext{
TrustedCa: trustedCASrc,
MatchSubjectAltNames: []*envoy_type_matcherv3.StringMatcher{
MatchTypedSubjectAltNames: []*tlsv3.SubjectAltNameMatcher{
{
MatchPattern: &envoy_type_matcherv3.StringMatcher_Exact{
Exact: sslCertSanHostName,
SanType: tlsv3.SubjectAltNameMatcher_DNS,
Matcher: &envoy_type_matcherv3.StringMatcher{
MatchPattern: &envoy_type_matcherv3.StringMatcher_Exact{
Exact: sslCertSanHostName,
},
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion gateway/router/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# -----------------------------------------------------------------------
FROM envoyproxy/envoy:v1.27.1
FROM envoyproxy/envoy:v1.29.1
LABEL maintainer="WSO2 Docker Maintainers <wso2.com>"

RUN apt-get update && apt-get upgrade -y && apt-get install -y curl
Expand Down
2 changes: 1 addition & 1 deletion libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ commons-logging = "1.1.1"
commons-pool = "1.5.6.wso2v1"
commons-validator = "1.7"
cxf = "3.5.4"
envoyproxy = "1.0.39"
envoyproxy = "1.0.42"
fasterxml-woodstox="6.4.0"
everit = "1.5.0.wso2.v2"
geronimo = "1.1.1.wso2v1"
Expand Down
2 changes: 1 addition & 1 deletion test/integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If you have setup `Kind` and wish to run the integration tests using Gradle, the
3. Port forward router-service to use localhost.

```bash
kubectl port-forward svc/apk-test-setup-wso2-apk-router-service -n apk-integration-test 9095:9095
kubectl port-forward svc/apk-test-setup-wso2-apk-gateway-service -n apk-integration-test 9095:9095
```

4. Add all DNS mappings to `/etc/hosts` file. Refer to `scripts/run-tests.sh` file for the domain names.
Expand Down
Loading