File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 11Release 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+
420v1.7.0
521------
622
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments