Dockerfile 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Using playbook2image as a base
  2. # See https://github.com/openshift/playbook2image for details on the image
  3. # including documentation for the settings/env vars referenced below
  4. FROM registry.centos.org/openshift/playbook2image:latest
  5. MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com>
  6. LABEL name="openshift/origin-ansible" \
  7. summary="OpenShift's installation and configuration tool" \
  8. description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  9. url="https://github.com/openshift/openshift-ansible" \
  10. io.k8s.display-name="openshift-ansible" \
  11. io.k8s.description="A containerized openshift-ansible image to let you run playbooks to install, upgrade, maintain and check an OpenShift cluster" \
  12. io.openshift.expose-services="" \
  13. io.openshift.tags="openshift,install,upgrade,ansible"
  14. USER root
  15. # Create a symlink to /opt/app-root/src so that files under /usr/share/ansible are accessible.
  16. # This is required since the system-container uses by default the playbook under
  17. # /usr/share/ansible/openshift-ansible. With this change we won't need to keep two different
  18. # configurations for the two images.
  19. RUN mkdir -p /usr/share/ansible/ && ln -s /opt/app-root/src /usr/share/ansible/openshift-ansible
  20. RUN INSTALL_PKGS="skopeo" && \
  21. yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
  22. rpm -V $INSTALL_PKGS && \
  23. yum clean all
  24. USER ${USER_UID}
  25. # The playbook to be run is specified via the PLAYBOOK_FILE env var.
  26. # This sets a default of openshift_facts.yml as it's an informative playbook
  27. # that can help test that everything is set properly (inventory, sshkeys)
  28. ENV PLAYBOOK_FILE=playbooks/byo/openshift_facts.yml \
  29. OPTS="-v" \
  30. INSTALL_OC=true
  31. # playbook2image's assemble script expects the source to be available in
  32. # /tmp/src (as per the source-to-image specs) so we import it there
  33. ADD . /tmp/src
  34. # Running the 'assemble' script provided by playbook2image will install
  35. # dependencies specified in requirements.txt and install the 'oc' client
  36. # as per the INSTALL_OC environment setting above
  37. RUN /usr/libexec/s2i/assemble
  38. # Add files for running as a system container
  39. COPY images/installer/system-container/root /
  40. CMD [ "/usr/libexec/s2i/run" ]