6 Commits
1.1 ... 1.2.1

Author SHA1 Message Date
35c80963b3 missed a && 2020-10-31 19:26:14 +01:00
43623da900 also upgraded ansible in debian 8 2020-10-31 18:57:30 +01:00
74ced09e91 fixup from last release 2020-10-31 18:54:14 +01:00
58c2f3da3f install ansible via apt 2020-10-31 17:42:54 +01:00
c83c16211d added debian 9 and 10 and removed 7 2020-10-31 17:24:36 +01:00
f7b497bfc4 added goss 2020-10-31 16:47:55 +01:00
14 changed files with 127 additions and 29 deletions

View File

@ -95,13 +95,25 @@ steps:
- push
- pull_request
- name: build-debian-7
- name: build-debian-9
image: plugins/docker
settings:
dockerfile: debian-8/Dockerfile
dockerfile: debian-9/Dockerfile
dry_run: true
repo: lerentis/ansible
tag: debian-7
tag: debian-9
when:
event:
- push
- pull_request
- name: build-debian-10
image: plugins/docker
settings:
dockerfile: debian-10/Dockerfile
dry_run: true
repo: lerentis/ansible
tag: debian-10
when:
event:
- push
@ -241,14 +253,28 @@ steps:
event:
- tag
- name: build-debian-7-publish
- name: build-debian-9-publish
image: plugins/docker
settings:
dockerfile: debian-8/Dockerfile
dockerfile: debian-9/Dockerfile
password:
from_secret: docker_password
repo: lerentis/ansible
tag: debian-7
tag: debian-9
username:
from_secret: docker_username
when:
event:
- tag
- name: build-debian-10-publish
image: plugins/docker
settings:
dockerfile: debian-10/Dockerfile
password:
from_secret: docker_password
repo: lerentis/ansible
tag: debian-10
username:
from_secret: docker_username
when:
@ -315,7 +341,8 @@ steps:
- build-fedora-24
- build-alpine-3
- build-debian-8
- build-debian-7
- build-debian-9
- build-debian-10
- build-centos-7
- build-centos-8
- build-arch
@ -326,7 +353,8 @@ steps:
- build-fedora-24-publish
- build-alpine-3-publish
- build-debian-8-publish
- build-debian-7-publish
- build-debian-9-publish
- build-debian-10-publish
- build-centos-7-publish
- build-centos-8-publish
- build-arch-publish

View File

@ -1,5 +1,7 @@
FROM alpine:3.10
RUN apk add --no-cache ansible
RUN apk add --no-cache ansible curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss
CMD ["ansible-playbook", "--help"]

View File

@ -1,5 +1,7 @@
FROM archlinux/base
RUN pacman -Syuu --noconfirm && pacman -S python ansible sshpass git python-passlib python-netaddr --noconfirm
RUN pacman -Syuu --noconfirm && pacman -S python ansible sshpass git python-passlib python-netaddr curl --noconfirm \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss
CMD ["ansible-playbook", "--help"]

View File

@ -1,7 +1,9 @@
FROM centos:7
RUN yum -y install epel-release \
&& yum -y install ansible git \
&& yum -y install ansible git curl python-firewall \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& yum clean headers \
&& yum clean packages

View File

@ -2,6 +2,10 @@ FROM centos:8
RUN dnf -y install python3-pip &&\
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm &&\
dnf install -y --enablerepo epel-playground ansible
dnf install -y --enablerepo epel-playground ansible curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& touch ~/.netrc && chmod og-rw ~/.netrc \
&& pip3 install firewall
CMD ["ansible-playbook", "--help"]

21
debian-10/Dockerfile Normal file
View File

@ -0,0 +1,21 @@
FROM debian:10
RUN apt-get -q update \
&& apt-get -yq install --no-install-recommends \
build-essential \
libffi-dev \
libssl-dev \
python3 \
python3-dev \
python3-pip \
git \
apt-utils \
curl \
ansible \
python \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& apt-get clean
CMD ["ansible-playbook", "--help"]

View File

@ -1,10 +0,0 @@
FROM debian:7
RUN apt-get -q update \
&& apt-get install -y python-pip python-dev git apt-utils
RUN pip install --index-url=https://pypi.python.org/simple/ --upgrade pip
RUN pip install git+https://github.com/ansible/ansible.git@devel
CMD ["ansible-playbook", "--help"]

View File

@ -5,14 +5,22 @@ RUN apt-get -q update \
build-essential \
libffi-dev \
libssl-dev \
python \
python-dev \
python-pip \
python3 \
python3-dev \
python3-pip \
git \
apt-utils \
&& apt-get clean \
&& pip install --upgrade pip
curl \
gnupg \
dirmngr \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& pip3 install --upgrade pip
RUN pip install git+https://github.com/ansible/ansible.git@devel
RUN echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" >> /etc/apt/sources \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367 \
&& apt-get -q update \
&& apt-get install -yq ansible \
&& apt-get clean
CMD ["ansible-playbook", "--help"]

26
debian-9/Dockerfile Normal file
View File

@ -0,0 +1,26 @@
FROM debian:9
RUN apt-get -q update \
&& apt-get -yq install --no-install-recommends \
build-essential \
libffi-dev \
libssl-dev \
python3 \
python3-dev \
python3-pip \
git \
apt-utils \
curl \
gnupg \
dirmngr \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& pip3 install --upgrade pip
RUN echo "deb http://ppa.launchpad.net/ansible/ansible/ubuntu trusty main" >> /etc/apt/sources \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367 \
&& apt-get -q update \
&& apt-get install -yq ansible \
&& apt-get clean
CMD ["ansible-playbook", "--help"]

View File

@ -3,6 +3,9 @@ FROM fedora:24
RUN dnf -y install \
ansible \
openssh-clients \
curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& dnf clean all
CMD ["ansible-playbook", "--help"]

View File

@ -9,6 +9,9 @@ RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ansible \
git \
curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& apt-get clean
CMD ["ansible-playbook", "--help"]

View File

@ -11,6 +11,9 @@ RUN apt-get update \
python-apt \
git-core \
openssh-client \
curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& apt-get clean
CMD ["ansible-playbook", "--help"]

View File

@ -11,6 +11,9 @@ RUN apt-get update \
python-apt \
git-core \
openssh-client \
curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& apt-get clean
CMD ["ansible-playbook", "--help"]

View File

@ -8,6 +8,9 @@ RUN apt-get update \
python-apt \
git-core \
openssh-client \
curl \
&& curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \
&& chmod +rx /usr/local/bin/goss \
&& apt-get clean
CMD ["ansible-playbook", "--help"]