Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moving venv-ansible script from kobihk to rhevm-qe-automation repo #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions venv-ansible/venv-ansible
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#!/usr/bin/env bash

set -xe

VENV=.ansbile

if [ ! -d "VENV" ]; then
virtualenv $VENV
fi

source $VENV/bin/activate
pip install -U -r requirements.txt -q
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to add the requirement.txt file too


ansible-playbook --version

INVENTORY=$1
shift
PLAYBOOK=$1
shift

SSH_KEY=""
if [ -e "$HOME/jenkins_ssh_key" ];
then
SSH_KEY="--key-file $HOME/jenkins_ssh_key"
fi
if [ -n "$JENKINS_URL" ]
then
# Running on Jenkins we want to see colorful output
export ANSIBLE_FORCE_COLOR=true
fi

export ANSIBLE_SSH_RETRIES=10
export ANSIBLE_HOST_KEY_CHECKING=False

pushd $WORKSPACE

[ -e "$PLAYBOOK" ]

ansible-playbook \
-u root \
-i "$INVENTORY" \
$SSH_KEY "$@" "$PLAYBOOK"

popd
deactivate