From 22fe11840ba738c045c3dce1bad840ce28c4b5b4 Mon Sep 17 00:00:00 2001 From: SamYaple Date: Tue, 15 Mar 2016 13:49:27 +0000 Subject: [PATCH] Move sysctl out of haproxy container sysctl was improperly set in the contaienr itself which is not correct TrivialFix Change-Id: If2ffca6d2a40e86db4af2f103a27b280bc5fa2ff --- ansible/roles/haproxy/tasks/config.yml | 7 +++++-- docker/haproxy/extend_start.sh | 3 --- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ansible/roles/haproxy/tasks/config.yml b/ansible/roles/haproxy/tasks/config.yml index 887af1aa5d..50d3246718 100644 --- a/ansible/roles/haproxy/tasks/config.yml +++ b/ansible/roles/haproxy/tasks/config.yml @@ -1,6 +1,9 @@ --- -- name: Allowing non-local IP binding - sysctl: name="net.ipv4.ip_nonlocal_bind" value=1 sysctl_set=yes +- name: Setting sysctl values + sysctl: name={{ item.name }} value={{ item.value }} sysctl_set=yes + with_items: + - { name: "net.ipv4.ip_nonlocal_bind", value: 1} + - { name: "net.unix.max_dgram_qlen", value: 128} when: set_sysctl | bool - name: Ensuring config directories exist diff --git a/docker/haproxy/extend_start.sh b/docker/haproxy/extend_start.sh index 16a65c0afa..c1914bb9ea 100644 --- a/docker/haproxy/extend_start.sh +++ b/docker/haproxy/extend_start.sh @@ -1,8 +1,5 @@ #!/bin/bash -# Set datagram receiving queue length to 128 for haproxy's socket -sysctl net.unix.max_dgram_qlen=128 - # We are intentionally not using exec so we can reload the haproxy config later echo "Running command: '${CMD}'" $CMD