summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-06-27 13:01:38 -0400
committerGitHub <noreply@github.com>2017-06-27 13:01:38 -0400
commitf187b54a8c386b1af4e0cad980490ff83f45a2b8 (patch)
treec367538f04c3c826b3b8331de6262419c7c5cd3b
parentdf511d532a0cf24f4f732b8affc0a97775c8edb9 (diff)
parent052de9020de8e5c67eca5060622fead8504021ef (diff)
downloadopenshift-f187b54a8c386b1af4e0cad980490ff83f45a2b8.tar.gz
openshift-f187b54a8c386b1af4e0cad980490ff83f45a2b8.tar.bz2
openshift-f187b54a8c386b1af4e0cad980490ff83f45a2b8.tar.xz
openshift-f187b54a8c386b1af4e0cad980490ff83f45a2b8.zip
Merge pull request #4601 from ewolinetz/fix_asb_quotes
Reverting quotation change in ansible_service_broker install for etcd
-rw-r--r--roles/ansible_service_broker/tasks/install.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/ansible_service_broker/tasks/install.yml b/roles/ansible_service_broker/tasks/install.yml
index b48583fd4..e383c94da 100644
--- a/roles/ansible_service_broker/tasks/install.yml
+++ b/roles/ansible_service_broker/tasks/install.yml
@@ -146,8 +146,8 @@
args:
- /usr/local/bin/etcd
- --data-dir=/data
- - --listen-client-urls="http://0.0.0.0:2379"
- - --advertise-client-urls="http://0.0.0.0:2379"
+ - "--listen-client-urls=http://0.0.0.0:2379"
+ - "--advertise-client-urls=http://0.0.0.0:2379"
ports:
- containerPort: 2379
protocol: TCP