Dockerfile.rhel7 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. FROM openshift3/playbook2image
  2. MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
  3. LABEL name="openshift3/openshift-ansible" \
  4. summary="OpenShift's installation and configuration tool" \
  5. description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  6. url="https://github.com/openshift/openshift-ansible" \
  7. io.k8s.display-name="openshift-ansible" \
  8. io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  9. io.openshift.expose-services="" \
  10. io.openshift.tags="openshift,install,upgrade,ansible" \
  11. com.redhat.component="aos3-installation-docker" \
  12. version="v3.4.1" \
  13. release="1" \
  14. architecture="x86_64"
  15. # Playbooks, roles and their dependencies are installed from packages.
  16. # Unlike in Dockerfile, we don't invoke the 'assemble' script here
  17. # because all content and dependencies (like 'oc') is already
  18. # installed via yum.
  19. USER root
  20. RUN INSTALL_PKGS="atomic-openshift-utils atomic-openshift-clients python-boto" && \
  21. yum repolist > /dev/null && \
  22. yum-config-manager --enable rhel-7-server-ose-3.4-rpms && \
  23. yum-config-manager --enable rhel-7-server-rh-common-rpms && \
  24. yum install -y $INSTALL_PKGS && \
  25. yum clean all
  26. USER ${USER_UID}
  27. # The playbook to be run is specified via the PLAYBOOK_FILE env var.
  28. # This sets a default of openshift_facts.yml as it's an informative playbook
  29. # that can help test that everything is set properly (inventory, sshkeys).
  30. # As the playbooks are installed via packages instead of being copied to
  31. # $APP_HOME by the 'assemble' script, we set the WORK_DIR env var to the
  32. # location of openshift-ansible.
  33. ENV PLAYBOOK_FILE=playbooks/byo/openshift_facts.yml \
  34. WORK_DIR=/usr/share/ansible/openshift-ansible \
  35. OPTS="-v"
  36. CMD [ "/usr/libexec/s2i/run" ]