Updated documentation for multiple HTTP authenticators. Review: https://reviews.apache.org/r/57663/
Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/764fa2cb Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/764fa2cb Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/764fa2cb Branch: refs/heads/master Commit: 764fa2cbe5439a509e5eb875aafcace47dc07ccb Parents: 7dd3b6d Author: Greg Mann <[email protected]> Authored: Thu Apr 6 17:16:45 2017 -0700 Committer: Vinod Kone <[email protected]> Committed: Thu Apr 6 17:16:45 2017 -0700 ---------------------------------------------------------------------- docs/authentication.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/764fa2cb/docs/authentication.md ---------------------------------------------------------------------- diff --git a/docs/authentication.md b/docs/authentication.md index 6961920..a96de6e 100644 --- a/docs/authentication.md +++ b/docs/authentication.md @@ -111,6 +111,19 @@ Mesos master and agent processes. For more information, refer to the format) of accepted credentials. This may be optional depending on the authenticator being used. +### Multiple HTTP Authenticators + +Multiple HTTP authenticators may be loaded into the Mesos master and agent. In +order to load multiple authenticators, specify them as a comma-separated list +using the `--http_authenticators` flag. The authenticators will be called +serially, and the result of the first successful authentication attempt will be +returned. + +If you wish to specify the default basic HTTP authenticator in addition to +custom authenticator modules, add the name `basic` to your authenticator list. +To specify the default JWT HTTP authenticator in addition to custom +authenticator modules, add the name `jwt` to your authenticator list. + ### Executor If HTTP executor authentication is enabled on the agent, then all requests from
