Skip to content

Commit e84da82

Browse files
authored
Merge pull request #796 from ssurenr/v1.7.1
V1.7.1 Bug fix release
2 parents 94ee805 + 2f11186 commit e84da82

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

docs/RELEASE-NOTES.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Release Notes for BIG-IP Controller for Kubernetes
22
==================================================
33

4+
v1.7.1
5+
------
6+
7+
Vulnerability Addresses
8+
```````````````````````
9+
+------------------+----------------------------------------------------------------+
10+
| CVE | Comments |
11+
+==================+================================================================+
12+
| CVE-2018-1002105 | Validated against Kubernetes 1.12.3 |
13+
+------------------+----------------------------------------------------------------+
14+
15+
Bug fixes
16+
`````````
17+
* :issues:`789` - Controller properly creates https redirect for child paths in k8s Ingress.
18+
* Fixes an issue in openshift where communication breaks with clients with no SNI support.
19+
420
v1.7.0
521
------
622

pkg/appmanager/routing.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ func httpRedirectIRule(port int32) string {
359359
set redir 0
360360
foreach s [split $paths "|"] {
361361
# See if the request path starts with the prefix
362-
append prefix "^" $s "($|/)"
362+
append prefix "^" $s "($|/*)"
363363
if {[HTTP::path] matches_regex $prefix} {
364364
set redir 1
365365
break
@@ -557,7 +557,7 @@ func sslPassthroughIRule() string {
557557
558558
when SERVER_CONNECTED {
559559
set svrssl_class "/%[1]s/ssl_reencrypt_serverssl_dg"
560-
if { [class exists $svrssl_class] } {
560+
if { [info exists servername_lower] and [class exists $svrssl_class] } {
561561
set profile [class match -value $servername_lower equals $svrssl_class]
562562
if { not ($profile equals "") } {
563563
SSL::profile $profile

0 commit comments

Comments
 (0)