diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-03-04 15:20:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-03-04 15:20:49 +0000 |
commit | 3b70767b85152cc79381104ba73c0afe9607f781 (patch) | |
tree | e5fa1f859ccc236c54a67f8d3646cd8ee796f67a /docs/configguide/configguide.rst | |
parent | def1634a5b8a2c8ca794fa878394234a8ebb3468 (diff) | |
parent | d0a5214093293a2295038b0810fe776723895bc0 (diff) |
Merge "Add support for SSL endpoints in Functest"
Diffstat (limited to 'docs/configguide/configguide.rst')
-rw-r--r-- | docs/configguide/configguide.rst | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/configguide/configguide.rst b/docs/configguide/configguide.rst index 7f4ac86c5..b7a25c7d5 100644 --- a/docs/configguide/configguide.rst +++ b/docs/configguide/configguide.rst @@ -231,6 +231,30 @@ If still the OpenStack command does not show anything or complains about connectivity issues, it could be due to an incorrect url given to the OS_AUTH_URL environment variable. Check the deployment settings. +SSL Support +----------- + +If the OpenStack deployment is defined to use HTTPS endpoints, a certificate +will be needed in the container in order to launch any command. + +The OS variable will point to that file. For example:: + + echo $OS_CACERT + /etc/ssl/certs/ca.crt + +However, this certificate does not exist in the container by default. It has to +be copied manually from the OpenStack deployment. This can be done in 2 ways: + + #. Create manually that file and copy the contents from the OpenStack controller. + + #. (recommended) Add the file using a Docker volume when starting the container:: + + -v <path_to_your_cert_file>:/etc/ssl/certs/ca.cert + + + + + Additional Options ------------------ |