-
Notifications
You must be signed in to change notification settings - Fork 68
/
kerberos.json
48 lines (48 loc) · 1.17 KB
/
kerberos.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"services": [
{
"name": "HUE",
"identities": [
{
"name": "/spnego"
}
],
"configurations": [
{
"core-site": {
"hadoop.proxyuser.HTTP.groups": "*",
"hadoop.proxyuser.HTTP.hosts": "*",
"hue.kerberos.principal.shortname": "hue"
}
}
],
"components": [
{
"name": "HUE_SERVER",
"identities": [
{
"name": "hue_kerberos",
"principal": {
"value": "hue/_HOST@${realm}",
"type": "service",
"configuration": "hue-desktop-site/kerberos_hue_principal"
},
"keytab": {
"file": "${keytab_dir}/hue.service.keytab",
"owner": {
"name": "${hue-env/hue_user}",
"access": "r"
},
"group": {
"name": "${hue-env/hue_group}",
"access": ""
},
"configuration": "hue-desktop-site/kerberos_hue_keytab"
}
}
]
}
]
}
]
}