source deployment: docker sahara-base needs ssh-keygen binary
Bug #1665293 reported by
Javier Castillo
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
kolla |
Fix Released
|
Medium
|
Unassigned | ||
Newton |
Fix Released
|
Undecided
|
Unassigned | ||
Ocata |
Fix Released
|
Medium
|
Unassigned | ||
Pike |
Fix Released
|
Medium
|
Unassigned |
Bug Description
Trunk: newton
Installation type: source + ubuntu
Problem: sahara-api needs "ssh-keygen" to be installed into its container.
Possible solution: in sahara-base Dockerfile, we could add something like:
{% elif install_type == 'source' %}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install openssh
{% elif base_distro in ['ubuntu'] %}
RUN apt-get -y install openssh-client
{% endif %}
To post a comment you must log in.
could u push a fix for this?