-
Notifications
You must be signed in to change notification settings - Fork 121
arcgis‐insights Cookbook Recipes
arcgis-insights cookbook is used to install and configure Insights for ArcGIS.
Brief descriptions of arcgis-insights cookbook recipes along with cookbook attributes are available at README.md. This page provides more detailed descriptions of the recipes and specifies attributes used by each recipe.
Some cookbook attributes are not used directly by the recipes but used to set the default values for other attributes. For example, node['arcgis']['version'] attribute affects default values of node['arcgis']['...']['product_code'] attributes.
Installs and configures Insights for ArcGIS.
Attributes used by the recipe:
{
"arcgis": {
"version": "10.5",
"run_as_user": "arcgis",
"run_as_password": "Pa$$w0rdPa$$w0rd",
"server": {
"install_dir": "C:\\Program Files\\ArcGIS",
},
"insights": {
"version": "1.0",
"setup": "%USERPROFILE%\\Documents\\Insights 1.0\\Insights\\Setup.exe"
}
},
"run_list": [
"recipe[arcgis-insights]"
]
}❗ ArcGIS Server or Portal for ArcGIS must be installed on the machine before running arcgis-insights::default recipe.
Uninstalls Insights for ArcGIS.
Attributes used by the recipe:
{
"arcgis": {
"version": "10.5",
"run_as_user": "arcgis",
"server": {
"install_dir": "C:\\Program Files (x86)\\ArcGIS"
},
"insights": {
"version": "1.0"
}
},
"run_list":[
"recipe[arcgis-insights::uninstall]"
]
}