1234567891011121314151617181920212223242526272829303132333435363738394041 |
- FROM openshift3/playbook2image
- MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
- LABEL name="openshift3/openshift-ansible" \
- summary="OpenShift's installation and configuration tool" \
- description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
- url="https://github.com/openshift/openshift-ansible" \
- io.k8s.display-name="openshift-ansible" \
- io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
- io.openshift.expose-services="" \
- io.openshift.tags="openshift,install,upgrade,ansible" \
- com.redhat.component="aos3-installation-docker" \
- version="v3.4.1" \
- release="1" \
- architecture="x86_64"
- USER root
- RUN INSTALL_PKGS="atomic-openshift-utils atomic-openshift-clients" && \
- yum repolist > /dev/null && \
- yum-config-manager --enable rhel-7-server-ose-3.4-rpms && \
- yum install -y $INSTALL_PKGS && \
- yum clean all
- USER ${USER_UID}
- ENV PLAYBOOK_FILE=playbooks/byo/openshift_facts.yml \
- WORK_DIR=/usr/share/ansible/openshift-ansible \
- OPTS="-v"
- CMD [ "/usr/libexec/s2i/run" ]
|