forked from shuhuai007/ambari-impala-service
-
Notifications
You must be signed in to change notification settings - Fork 38
/
kerberos.json
53 lines (52 loc) · 1.49 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
49
50
51
52
53
{
"services": [
{
"name": "IMPALA",
"identities": [
{
"name": "impala_daemon",
"principal": {
"value": "${impala-env/impala_user}/_HOST@${realm}",
"type": "service",
"configuration": "impala-env/impala_principal_name"
},
"keytab": {
"file": "${keytab_dir}/impala.service.keytab",
"owner": {
"name": "${impala-env/impala_user}",
"access": "r"
},
"group": {
"name": "${impala-env/impala_group}",
"access": ""
},
"configuration": "impala-env/impala_keytab"
}
},
{
"name": "impala_http",
"principal": {
"value": "HTTP/_HOST@${realm}",
"type": "service",
"configuration": "impala-env/http_principal_name"
},
"keytab": {
"file": "${keytab_dir}/impala-http.service.keytab",
"owner": {
"name": "${impala-env/impala_user}",
"access": "r"
},
"group": {
"name": "${impala-env/impala_group}",
"access": ""
},
"configuration": "impala-env/http_keytab"
}
},
{
"name": "/smokeuser"
}
]
}
]
}