diff options
author | Oliver Walsh <owalsh@redhat.com> | 2017-05-26 16:53:10 +0100 |
---|---|---|
committer | Oliver Walsh <owalsh@redhat.com> | 2017-05-26 17:12:04 +0100 |
commit | 03f208b65871edbe310d58dcb49a8bebccedafa8 (patch) | |
tree | deee6d043f65ea180e03caad4452f3f81cc710c5 | |
parent | 34cbc97d57ea618ec97267e24f030e02f7b124d0 (diff) |
Add sshd service to containerized compute role
This adds the sshd puppet service to the containerized compute role
All other roles already include this service from the defaults roles data,
it is only missing from the compute role.
As the sshd service runs on the docker host, this must remain as a
traditional puppet service. NB the sshd puppet service does not enable
sshd, it just enables the management of the sshd config via t-h-t/puppet.
Closes-bug: #1693837
Change-Id: I86ff749245ac791e870528ad4b410f3c1fd812e0
-rw-r--r-- | environments/docker-services-tls-everywhere.yaml | 1 | ||||
-rw-r--r-- | environments/docker.yaml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/environments/docker-services-tls-everywhere.yaml b/environments/docker-services-tls-everywhere.yaml index e37f2515..2740664c 100644 --- a/environments/docker-services-tls-everywhere.yaml +++ b/environments/docker-services-tls-everywhere.yaml @@ -50,3 +50,4 @@ parameter_defaults: - OS::TripleO::Services::NovaLibvirt - OS::TripleO::Services::ComputeNeutronOvsAgent - OS::TripleO::Services::Docker + - OS::TripleO::Services::Sshd diff --git a/environments/docker.yaml b/environments/docker.yaml index cbd5b687..36e4c391 100644 --- a/environments/docker.yaml +++ b/environments/docker.yaml @@ -63,3 +63,4 @@ parameter_defaults: - OS::TripleO::Services::ComputeNeutronOvsAgent - OS::TripleO::Services::Docker - OS::TripleO::Services::CeilometerAgentCompute + - OS::TripleO::Services::Sshd |