Robert Levas created AMBARI-23239:
-------------------------------------
Summary: Create SSO descriptor that services can use to specify
they support SSO
Key: AMBARI-23239
URL: https://issues.apache.org/jira/browse/AMBARI-23239
Project: Ambari
Issue Type: Task
Components: ambari-server
Affects Versions: 2.7.0
Reporter: Robert Levas
Assignee: Robert Levas
Fix For: 2.7.0
Create a descriptor file so that services can declare in their stack definition
so indicate they support SSO and which properties need to be set by Ambari to
enable it.
{code:title=Example sso.json}
{
"services": [
{
"name": "RANGER",
"enabled_disabled_configuration": "ranger-admin-site/ranger.sso.enabled",
"components": [
{
"name": "RANGER_ADMIN",
"configurations": [
{
"ranger-admin-site": {
"ranger.sso.enabled": "true",
"ranger.sso.providerurl": "${sso_provider_url}",
"ranger.sso.publicKey": "${sso_public_key}",
"ranger.sso.cookiename": "${sso_cookie_name}"
}
}
]
}
]
}
]
}
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)