From 29605875c55492e183622ef44ac0e824e7813239 Mon Sep 17 00:00:00 2001 From: balys Date: Fri, 9 Dec 2016 18:04:24 +0000 Subject: [PATCH] update ansible version, disable zeppelin by default --- INSTALL-CDH.md | 18 +++++++++--------- INSTALL-ENV.md | 16 ++++++++-------- INSTALL-HDP.md | 18 +++++++++--------- README.md | 2 +- playbooks/group_vars/hortonworks | 2 +- 5 files changed, 28 insertions(+), 28 deletions(-) diff --git a/INSTALL-CDH.md b/INSTALL-CDH.md index 08b7ac0..cbebf45 100644 --- a/INSTALL-CDH.md +++ b/INSTALL-CDH.md @@ -89,52 +89,52 @@ The following steps must be followed to install Ansible and the prerequisites on ### CentOS/RHEL 6 -1. Install required packaged: +1. Install required packages: ``` sudo su - yum -y install epel-release || yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm - yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced -y + yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced libffi libffi-devel gcc openssl-devel -y ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` ### CentOS/RHEL 7 -1. Install required packaged: +1. Install required packages: ``` sudo su - yum -y install epel-release || yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced -y + yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced libffi libffi-devel gcc openssl-devel -y ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` ### Ubuntu 14+ / Debian 8 -1. Install required packaged: +1. Install required packages: ``` sudo su - - apt-get update; apt-get -y install python-virtualenv python-pip python-dev sshpass git vim + apt-get update; apt-get -y install python-virtualenv python-pip python-dev sshpass git vim libffi libffi-devel gcc openssl-devel ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` diff --git a/INSTALL-ENV.md b/INSTALL-ENV.md index 15ae9b1..569e997 100644 --- a/INSTALL-ENV.md +++ b/INSTALL-ENV.md @@ -23,13 +23,13 @@ The following steps must be followed to install Ansible and the prerequisites on ### CentOS/RHEL 6 -1. Install required packaged: +1. Install required packages: ``` sudo su - yum -y remove python-crypto yum -y install epel-release || yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm - yum repolist; yum install gcc gcc-c++ python-virtualenv python-pip python-devel sshpass git vim-enhanced -y + yum repolist; yum install gcc gcc-c++ python-virtualenv python-pip python-devel sshpass git vim-enhanced libffi libffi-devel gcc openssl-devel -y ``` 2. Create the Python virtualenv and install Ansible: @@ -47,19 +47,19 @@ The following steps must be followed to install Ansible and the prerequisites on ### CentOS/RHEL 7 -1. Install required packaged: +1. Install required packages: ``` sudo su - yum -y install epel-release || yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - yum repolist; yum install gcc gcc-c++ python-virtualenv python-pip python-devel sshpass git vim-enhanced -y + yum repolist; yum install gcc gcc-c++ python-virtualenv python-pip python-devel sshpass git vim-enhanced libffi libffi-devel gcc openssl-devel -y ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` 3. Generate SSH public/private key pair (press Enter for defaults): @@ -70,18 +70,18 @@ The following steps must be followed to install Ansible and the prerequisites on ### Ubuntu 14+ / Debian 8 -1. Install required packaged: +1. Install required packages: ``` sudo su - - apt-get update; apt-get -y install python-virtualenv python-pip python-dev sshpass git vim + apt-get update; apt-get -y install python-virtualenv python-pip python-dev sshpass git vim libffi libffi-devel gcc openssl-devel ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` 3. Generate SSH public/private key pair (press Enter for defaults): diff --git a/INSTALL-HDP.md b/INSTALL-HDP.md index 37f2003..de8e40e 100644 --- a/INSTALL-HDP.md +++ b/INSTALL-HDP.md @@ -79,52 +79,52 @@ The following steps must be followed to install Ansible and the prerequisites on ### CentOS/RHEL 6 -1. Install required packaged: +1. Install required packages: ``` sudo su - yum -y install epel-release || yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm - yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced -y + yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced libffi libffi-devel gcc openssl-devel -y ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` ### CentOS/RHEL 7 -1. Install required packaged: +1. Install required packages: ``` sudo su - yum -y install epel-release || yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm - yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced -y + yum repolist; yum install python-virtualenv python-pip python-devel sshpass git vim-enhanced libffi libffi-devel gcc openssl-devel -y ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` ### Ubuntu 14+ / Debian 8 -1. Install required packaged: +1. Install required packages: ``` sudo su - - apt-get update; apt-get -y install python-virtualenv python-pip python-dev sshpass git vim + apt-get update; apt-get -y install python-virtualenv python-pip python-dev sshpass git vim libffi libffi-devel gcc openssl-devel ``` 2. Create the Python virtualenv and install Ansible: ``` virtualenv ansible2; source ansible2/bin/activate - pip install ansible pyrax + pip install ansible==2.1.3.0 pyrax ``` diff --git a/README.md b/README.md index b958533..a5d7e1b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ See [INSTALL-ENV.md](../master/INSTALL-ENV.md) for installation and build instru ## [Requirements] (id:requirements) -- Ansible >= 2.0. +- Ansible == 2.1.3.0 (2.2 is not supported at the moment) - Expects RHEL/CentOS 6/7 or Ubuntu 14 hosts. diff --git a/playbooks/group_vars/hortonworks b/playbooks/group_vars/hortonworks index fc7d891..781570e 100644 --- a/playbooks/group_vars/hortonworks +++ b/playbooks/group_vars/hortonworks @@ -10,7 +10,7 @@ wait: true wait_timeout: 1800 # 30 minutes install_spark: true -install_zeppelin: true # >= HDP2_5 +install_zeppelin: false # >= HDP2_5 install_flume: true install_hbase: true install_storm: true