Merge pull request #212 from cloudnull/convert-elasticsearch-repo-packages

converted elastic search to use repo_packages
This commit is contained in:
Darren Birkett 2014-10-02 08:27:50 +01:00
commit 83cecab6f1
3 changed files with 5 additions and 21 deletions

View File

@ -21,17 +21,3 @@ verbose: True
container_lvm_fstype: ext4 container_lvm_fstype: ext4
container_lvm_fssize: 5GB container_lvm_fssize: 5GB
apt_container_keys:
- { url: "http://packages.elasticsearch.org/GPG-KEY-elasticsearch", state: "present" }
apt_container_repos:
- { repo: "deb http://packages.elasticsearch.org/elasticsearch/1.2/debian stable main", state: "present"}
container_packages:
- elasticsearch
service_pip_dependencies:
- requests
- python-memcached
- pycrypto

View File

@ -13,18 +13,14 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# Setup supporting services
- hosts: elasticsearch - hosts: elasticsearch
user: root user: root
roles: roles:
- container_extra_setup - container_extra_setup
vars_files:
- vars/config_vars/container_config_elasticsearch.yml
- hosts: elasticsearch
user: root
roles:
- common - common
- container_common - container_common
- logging_common - logging_common
- elasticsearch - elasticsearch
vars_files:
- vars/config_vars/container_config_elasticsearch.yml
- vars/repo_packages/elasticsearch.yml

View File

@ -27,3 +27,5 @@ container_packages:
service_pip_dependencies: service_pip_dependencies:
- requests - requests
- python-memcached
- pycrypto