Skip to content

Commit 0c78214

Browse files
committed
Missing load balancer health monitors fix
In api and etcd load balancer templates we define if Octavia load balancer healthchecks should be enabled. Corrected octavia_lb_healthcheck parameter value comparison. Closes-bug: #2015393 Change-Id: Icee8be92ea3e3121934645049b81b79be9bd046a (cherry picked from commit f2dc768)
1 parent add8105 commit 0c78214

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

magnum/drivers/common/templates/lb_api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ conditions:
1313
octavia_lb_healthcheck_enabled:
1414
equals:
1515
- get_param: octavia_lb_healthcheck
16-
- []
16+
- True
1717

1818
parameters:
1919

magnum/drivers/common/templates/lb_etcd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ conditions:
1414
octavia_lb_healthcheck_enabled:
1515
equals:
1616
- get_param: octavia_lb_healthcheck
17-
- []
17+
- True
1818

1919
parameters:
2020

0 commit comments

Comments
 (0)