Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion images/origin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
#
FROM openshift/origin-cli

RUN INSTALL_PKGS="origin" && \
RUN INSTALL_PKGS="origin ceph-common" && \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this only used by the controllers?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's used by controller-manager for dynamic provisioning and resize and by kubelet to map/unmap (local "attach"/"detach") volumes.

yum install -y centos-release-ceph-luminous && \
rpm -V centos-release-ceph-luminous && \
yum --enablerepo=origin-local-release install -y ${INSTALL_PKGS} && \
rpm -V ${INSTALL_PKGS} && \
yum clean all && \
Expand Down