You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@mesos.apache.org by "Michael Park (JIRA)" <ji...@apache.org> on 2015/09/30 22:32:04 UTC

[jira] [Created] (MESOS-3560) JSON-based credential files do not work correctly

Michael Park created MESOS-3560:
-----------------------------------

             Summary: JSON-based credential files do not work correctly
                 Key: MESOS-3560
                 URL: https://issues.apache.org/jira/browse/MESOS-3560
             Project: Mesos
          Issue Type: Bug
          Components: master
            Reporter: Michael Park
            Assignee: Isabel Jimenez


Specifying the following credentials file:
{code}
{
  “credentials”: [
    {
      “principal”: “user”,
      “secret”: “password”
    }
  ]
}
{code}

Then hitting a master endpoint with:
{code}
curl -i -u “user:password” ...
{code}

Does not work. This is contrary to the text-based credentials file which works:
{code}
user password
{code}

Currently, the password in a JSON-based credentials file needs to be base64-encoded in order for it to work:
{code}
{
  “credentials”: [
    {
      “principal”: “user”,
      “secret”: “cGFzc3dvcmQ=”
    }
  ]
}
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)