Skip to content

arcgis‐insights Cookbook Recipes

Cameron Kroeker edited this page May 6, 2021 · 5 revisions

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.

default

Installs and configures Insights for ArcGIS.

Attributes used by the recipe:

{
  "arcgis": {
    "version": "10.8.1",
    "run_as_user": "arcgis",
    "run_as_password": "Pa$$w0rdPa$$w0rd",
    "server": {
      "install_dir": "C:\\Program Files\\ArcGIS",
    },
    "insights": {
      "version": "2020.3",
      "setup": "%USERPROFILE%\\Documents\\ArcGIS Insights Windows 2020.3\\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.

uninstall

Uninstalls Insights for ArcGIS.

Attributes used by the recipe:

{
  "arcgis": {
    "version": "10.8.1",
    "run_as_user": "arcgis",
    "server": {
      "install_dir": "C:\\Program Files (x86)\\ArcGIS"
    },
    "insights": {
      "version": "2020.3"
     }
  },
  "run_list":[
    "recipe[arcgis-insights::uninstall]"
  ]
}
Clone this wiki locally