diff options
author | William Yeh <william.pjyeh@gmail.com> | 2017-09-11 18:37:48 +0800 |
---|---|---|
committer | William Yeh <william.pjyeh@gmail.com> | 2017-09-13 17:44:29 +0800 |
commit | 57d366d79328ee5d127d05644b108bd4f7915cdc (patch) | |
tree | a10900020176785d9732634ae5baac2ddb4734a5 /master-centos6-onbuild | |
parent | 7d885c87026bc44450b79f504b9a5becf0969783 (diff) | |
download | docker-ansible-57d366d79328ee5d127d05644b108bd4f7915cdc.tar.gz docker-ansible-57d366d79328ee5d127d05644b108bd4f7915cdc.tar.zst docker-ansible-57d366d79328ee5d127d05644b108bd4f7915cdc.zip |
Add: Windows managed node support via "pywinrm".
Remove: old distributions wheezy, precise, centos6.
Remove: Ansible 1.9 was not supported in CentOS EPEL.
See http://www.spinics.net/linux/fedora/epel-devel/msg00792.html
Diffstat (limited to 'master-centos6-onbuild')
-rw-r--r-- | master-centos6-onbuild/Dockerfile | 89 | ||||
-rwxr-xr-x | master-centos6-onbuild/ansible-playbook-wrapper | 50 |
2 files changed, 0 insertions, 139 deletions
diff --git a/master-centos6-onbuild/Dockerfile b/master-centos6-onbuild/Dockerfile deleted file mode 100644 index 091bad2..0000000 --- a/master-centos6-onbuild/Dockerfile +++ /dev/null | |||
@@ -1,89 +0,0 @@ | |||
1 | # Dockerfile for building Ansible image from source for CentOS 6, with as few additional software as possible. | ||
2 | # | ||
3 | # @see http://docs.ansible.com/ansible/intro_installation.html#running-from-source | ||
4 | # | ||
5 | # [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue, | ||
6 | # we need to patch /etc/sudoers. | ||
7 | # @see http://unix.stackexchange.com/questions/122616/why-do-i-need-a-tty-to-run-sudo-if-i-can-sudo-without-a-password | ||
8 | # @see https://bugzilla.redhat.com/show_bug.cgi?id=1020147 | ||
9 | # | ||
10 | # Version 1.0 | ||
11 | # | ||
12 | |||
13 | |||
14 | # pull base image | ||
15 | FROM centos:centos6 | ||
16 | |||
17 | MAINTAINER William Yeh <william.pjyeh@gmail.com> | ||
18 | |||
19 | |||
20 | RUN echo "===> Installing EPEL..." && \ | ||
21 | yum -y install epel-release && \ | ||
22 | yum -y update && \ | ||
23 | \ | ||
24 | \ | ||
25 | echo "===> Installing initscripts to emulate normal OS behavior..." && \ | ||
26 | yum -y install initscripts && \ | ||
27 | \ | ||
28 | \ | ||
29 | echo "===> Adding Ansible's prerequisites..." && \ | ||
30 | yum -y install \ | ||
31 | gcc make \ | ||
32 | python python-devel python-pip \ | ||
33 | libffi-devel openssl-devel \ | ||
34 | libxml2 libxml2-devel libxslt libxslt-devel \ | ||
35 | git sudo curl && \ | ||
36 | pip install --upgrade pip && \ | ||
37 | pip install --upgrade \ | ||
38 | pyyaml jinja2 pycrypto paramiko httplib2 && \ | ||
39 | \ | ||
40 | \ | ||
41 | echo "===> Downloading Ansible's source tree..." && \ | ||
42 | git clone git://github.com/ansible/ansible.git --recursive && \ | ||
43 | \ | ||
44 | \ | ||
45 | echo "===> Compiling Ansible..." && \ | ||
46 | cd ansible && \ | ||
47 | bash -c 'source ./hacking/env-setup' && \ | ||
48 | \ | ||
49 | \ | ||
50 | echo "===> Moving useful Ansible stuff to /opt/ansible ..." && \ | ||
51 | mkdir -p /opt/ansible && \ | ||
52 | mv /ansible/bin /opt/ansible/bin && \ | ||
53 | mv /ansible/lib /opt/ansible/lib && \ | ||
54 | mv /ansible/docs /opt/ansible/docs && \ | ||
55 | rm -rf /ansible && \ | ||
56 | \ | ||
57 | \ | ||
58 | echo "===> Disabling sudo 'requiretty' setting..." && \ | ||
59 | sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers && \ | ||
60 | \ | ||
61 | \ | ||
62 | echo "===> Removing unused YUM resources..." && \ | ||
63 | yum -y remove epel-release gcc git python-devel python-pip \ | ||
64 | libffi-devel openssl-devel || true && \ | ||
65 | yum clean all && \ | ||
66 | \ | ||
67 | \ | ||
68 | echo "===> Adding hosts for convenience..." && \ | ||
69 | mkdir -p /etc/ansible && \ | ||
70 | echo 'localhost' > /etc/ansible/hosts | ||
71 | |||
72 | |||
73 | ENV PATH /opt/ansible/bin:$PATH | ||
74 | ENV PYTHONPATH /opt/ansible/lib:$PYTHONPATH | ||
75 | ENV MANPATH /opt/ansible/docs/man:$MANPATH | ||
76 | |||
77 | |||
78 | COPY ansible-playbook-wrapper /usr/local/bin/ | ||
79 | |||
80 | ONBUILD WORKDIR /tmp | ||
81 | ONBUILD COPY . /tmp | ||
82 | ONBUILD RUN \ | ||
83 | echo "===> Diagnosis: host information..." && \ | ||
84 | ansible -c local -m setup all | ||
85 | |||
86 | |||
87 | |||
88 | # default command: display Ansible version | ||
89 | CMD [ "ansible-playbook", "--version" ] | ||
diff --git a/master-centos6-onbuild/ansible-playbook-wrapper b/master-centos6-onbuild/ansible-playbook-wrapper deleted file mode 100755 index dcc6723..0000000 --- a/master-centos6-onbuild/ansible-playbook-wrapper +++ /dev/null | |||
@@ -1,50 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # Simple wrapper for executing ansible-galaxy and ansible-playbook | ||
4 | # with local connection. | ||
5 | # | ||
6 | # USAGE: | ||
7 | # ansible-playbook-wrapper [other ansible-playbook arguments] | ||
8 | # | ||
9 | # ENVIRONMENT VARIABLES: | ||
10 | # | ||
11 | # - REQUIREMENTS: requirements filename; default = "requirements.yml" | ||
12 | # - PLAYBOOK: playbook filename; default = "playbook.yml" | ||
13 | # - INVENTORY: inventory filename; default = "/etc/ansible/hosts" | ||
14 | # | ||
15 | |||
16 | |||
17 | # | ||
18 | # install Galaxy roles, if any | ||
19 | # | ||
20 | |||
21 | if [ -z "$REQUIREMENTS" ]; then | ||
22 | REQUIREMENTS=requirements.yml | ||
23 | fi | ||
24 | |||
25 | if [ -f "$REQUIREMENTS" ]; then | ||
26 | yum -y install git | ||
27 | ansible-galaxy install -r $REQUIREMENTS | ||
28 | fi | ||
29 | |||
30 | |||
31 | # | ||
32 | # execute playbook | ||
33 | # | ||
34 | |||
35 | if [ -z "$PLAYBOOK" ]; then | ||
36 | PLAYBOOK=playbook.yml | ||
37 | fi | ||
38 | |||
39 | |||
40 | if [ -z "$INVENTORY" ]; then | ||
41 | exec ansible-playbook \ | ||
42 | $PLAYBOOK \ | ||
43 | --connection=local \ | ||
44 | "$@" | ||
45 | else | ||
46 | exec ansible-playbook \ | ||
47 | -i $INVENTORY $PLAYBOOK \ | ||
48 | --connection=local \ | ||
49 | "$@" | ||
50 | fi | ||