Member since
05-18-2016
1
Post
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2139 | 09-16-2016 09:05 AM |
09-16-2016
09:05 AM
@avoma @Artem Ervits The Blueprint API Doesn't cover how to set custom service accounts like : hdptest-ambari-qa instead of ambari-qa as smokeuser. We can do this using Service accounts in Ambari UI.
But Through blueprint it should be with <app>-env properties like : "core-site" : {
"properties" : {
"hadoop.proxyuser.{{ cluster_name }}-hcat.hosts" : "*",
"hadoop.proxyuser.{{ cluster_name }}-hcat.groups" : "*",
"hadoop.proxyuser.{{ cluster_name }}-hive.groups" : "*",
"hadoop.proxyuser.{{ cluster_name }}-hdfs.groups" : "*",
"hadoop.proxyuser.{{ cluster_name }}-hdfs.hosts" : "*",
"hadoop.proxyuser.{{ cluster_name }}-hive.hosts" : "*"
}} "hadoop-env": {
"properties": {
"hdfs_user" : "{{ cluster_name }}-hdfs"
}} "hive-env" : {
"properties" : {
"webhcat_user" : "{{ cluster_name }}-hcat",
"hive_user" : "{{ cluster_name }}-hive",
"hcat_user" : "{{ cluster_name }}-hcat"
}}
... View more