From 8f74906435262caea9384a612e23122336a19a12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Castillo=20Alc=C3=ADbar?= Date: Wed, 27 Sep 2017 13:03:20 +0200 Subject: [PATCH] [swarm-fedora-atomic] fix cluster etcd_lb protocol definition In file drivers/swarm_fedora_atomic_v1/templates/cluster.yaml, etcd_lb protocol is hardcoded: etcd_lb: type: ../../common/templates/lb.yaml properties: fixed_subnet: {get_attr: [network, fixed_subnet]} external_network: {get_param: external_network} protocol: HTTP port: 2379 but protocol should be: {get_param: loadbalancing_protocol} Change-Id: Ib36ff0a99e219db9c0e0f35267faf317f5a14554 Closes-Bug: #1712054 --- magnum/drivers/swarm_fedora_atomic_v1/templates/cluster.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magnum/drivers/swarm_fedora_atomic_v1/templates/cluster.yaml b/magnum/drivers/swarm_fedora_atomic_v1/templates/cluster.yaml index 79813bacc0..389a9855f5 100644 --- a/magnum/drivers/swarm_fedora_atomic_v1/templates/cluster.yaml +++ b/magnum/drivers/swarm_fedora_atomic_v1/templates/cluster.yaml @@ -281,7 +281,7 @@ resources: properties: fixed_subnet: {get_attr: [network, fixed_subnet]} external_network: {get_param: external_network} - protocol: HTTP + protocol: {get_param: loadbalancing_protocol} port: 2379 ######################################################################