tripleo-image-elements/elements/openstack-ssl
Dave McNally 697b378129 Add ability to disable stunnel
This change adds the ability to "turn off" the stunnel configuration for
the openstack services by unsetting the service configurations when
stunnel.connect_host is not set.

Change-Id: I469b1f02285dfa235d19cd6a7343c929d50dd31b
2015-04-23 09:30:48 +01:00
..
os-apply-config/etc Add ability to disable stunnel 2015-04-23 09:30:48 +01:00
os-refresh-config/pre-configure.d Extract stunnel from openstack-ssl 2014-09-17 08:56:34 +01:00
README.md Extract stunnel from openstack-ssl 2014-09-17 08:56:34 +01:00
element-deps Extract stunnel from openstack-ssl 2014-09-17 08:56:34 +01:00

README.md

Configure stunnel4 for local services.

Configuration

stunnel: cert: certdata key: keydata ports:

  • name: 'ec2' accept: 13773 connect: 8773
  • name: 'image' accept: 13292 connect: 9292
  • name: 'identity' accept: 13000 connect: 5000
  • name: 'network' accept: 13696 connect: 9696
  • name: 'compute' accept: 13774 connect: 8774
  • name: 'swift-proxy' accept: 13080 connect: 8080
  • name: 'cinder' accept: 13776 connect: 8776 connect_host: localhost

The certificate and key data will be written to /etc/ssl/from-heat.{crt,key}.

The certificate and key will be held persistently by Heat, so only use this with an SSL enabled heat, and as soon as bug 1269999 is fixed, we will migrate away from this implementation.

Note that the public API endpoints in keystone need to be registered with https urls, which is outside the scope of the local machine configuration process.

See the stunnel man page for documentation on crt and key formats etc.