mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-10 10:32:56 +01:00
Add an ansible terraform custom image
* Adds install-terraform for installing terraform binaries * Adds install-ansible for installing ansible binaries * Adds a ruby-2.3-ansible-2.5.1-terraform-0.11 image Towards https://gitlab.com/gitlab-org/omnibus-gitlab/issues/3395
This commit is contained in:
parent
f73dcbccba
commit
61ec1a94bc
6 changed files with 61 additions and 5 deletions
12
scripts/install-ansible
Executable file
12
scripts/install-ansible
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -xeou pipefail
|
||||
|
||||
ANSIBLE_VERSION=$1
|
||||
|
||||
apt-get update
|
||||
apt-get install -y python-pip python-dev
|
||||
apt-get clean -yqq
|
||||
|
||||
pip install --upgrade cffi
|
||||
pip install "ansible==${ANSIBLE_VERSION}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue