-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add SSL support to mesos configuration #77
Conversation
CentOS 7 task Downloading and enable the EPEL repository definitions. fails |
@@ -8,6 +8,15 @@ LOGS={{mesos_log_location}} | |||
ULIMIT="{{mesos_ulimit}}" | |||
ZK="{{ mesos_zookeeper_masters }}" | |||
|
|||
{% if mesos_ssl_enabled %} | |||
export LIBPROCESS_SSL_ENABLED=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't this be prefixed with MESOS_ ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have it currently working using exactly this.
If you like I can check tomorrow if the MESOS_ prefix also works?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tried MESOS_LIBPROCESS_SSL_ENABLED
and MESOS_SSL_ENABLED
, both do not work
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thats odd but ok, will check why build fails
Rebase on master, fixed in #78 |
Thank you for contribution 👍 |
This PR adds SSL-related configuration settings in /etc/default/mesos when
mesos_ssl_enabled
is true.