Github user jacek-lewandowski commented on the pull request:
https://github.com/apache/spark/pull/3571#issuecomment-70477943
@JoshRosen thanks a lot for your review and comments - will apply them
soon. I've been waiting with the documentation until someone accept this
approach.
For Spark UI SSL support - I didn't do that because there is
https://github.com/apache/spark/pull/1980 (actually mentioned by you in
https://github.com/apache/spark/pull/2739). However the answer for your
question is yes - SSLOptions can be created at different namespace and, since
it can configure Jetty (`createJettySslContextFactory` method), it can be used
for Spark UI as well. Actually, I considered `spark.ssl.xxx` for Akka and
internal HttpServer (for file sharing) and `spark.ui.ssl.xxx` for UI. We would
just need to add:
```scala
private[spark] val sslUIOptions = SSLOptions.parse(sparkConf,
"spark.ui.ssl")
```
to the SecurityManager class.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]