Skip to content

Commit

Permalink
Merge pull request #399 from Esri/5.1.0
Browse files Browse the repository at this point in the history
Release v5.1.0
  • Loading branch information
cameronkroeker authored Nov 7, 2024
2 parents c92c776 + 1447afc commit 56e8d9f
Show file tree
Hide file tree
Showing 352 changed files with 10,962 additions and 640 deletions.
25 changes: 13 additions & 12 deletions cookbooks/arcgis-egdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ layout: default
title: "arcgis-egdb cookbook"
category: cookbooks
item: arcgis-egdb
version: 2.0.0
version: 2.1.0
latest: true
---

Expand All @@ -19,6 +19,7 @@ The arcgis-egdb cookbook creates enterprise geodatabases in SQL Server or Postgr
* Windows Server 2022
* Ubuntu Server 20.04 LTS
* Ubuntu Server 22.04 LTS
* Ubuntu Server 24.04 LTS
* Red Hat Enterprise Linux Server 8
* Red Hat Enterprise Linux Server 9
* SUSE Linux Enterprise Server 15
Expand Down Expand Up @@ -65,7 +66,7 @@ ArcPy does not support creating databases in Amazon RDS database servers. The co
"database" : "egdb",
"data_item_path" : "/enterpriseDatabases/registeredDatabase",
"connection_file": "C:\\chef\\misc_scripts\\connection_files\\RDS_egdb.sde",
"is_managed" : true,
"is_managed" : false,
"connection_type" : "shared"
}]
```
Expand All @@ -81,7 +82,7 @@ Attributes used by the recipe:
```JSON
{
"arcgis": {
"version": "11.3",
"version": "11.4",
"server": {
"install_dir": "C:\\Program Files\\ArcGIS\\Server",
"private_url": "https://domain.com:6443/arcgis",
Expand All @@ -94,7 +95,7 @@ Attributes used by the recipe:
"egdb": {
"engine": "postgres",
"endpoint": "xxx.cluster-yyy.us-east-2.rds.amazonaws.com",
"keycodes": "C:\\Program Files\\ESRI\\License11.3\\sysgen\\keycodes",
"keycodes": "C:\\Program Files\\ESRI\\License11.4\\sysgen\\keycodes",
"postgresbin" : "C:\\Program Files\\ArcGIS\\DataStore\\framework\\runtime\\pgsql\\bin",
"master_username": "EsriRDSAdmin",
"master_password": "changeit",
Expand All @@ -104,7 +105,7 @@ Attributes used by the recipe:
"database": "egdb",
"data_item_path": "/enterpriseDatabases/registeredDatabase",
"connection_file": "C:\\chef\\msic_scripts\\connection_files\\RDS_egdb.sde",
"is_managed": true,
"is_managed": false,
"connection_type": "shared"
}]
}
Expand All @@ -124,7 +125,7 @@ Attributes used by the recipe:
```JSON
{
"arcgis": {
"version": "11.3",
"version": "11.4",
"run_as_user": "arcgis",
"server": {
"install_dir": "C:\\Program Files\\ArcGIS\\Server"
Expand All @@ -135,7 +136,7 @@ Attributes used by the recipe:
"egdb": {
"engine": "postgres",
"endpoint": "xxx.cluster-yyy.us-east-2.rds.amazonaws.com",
"keycodes": "C:\\Program Files\\ESRI\\License11.3\\sysgen\\keycodes",
"keycodes": "C:\\Program Files\\ESRI\\License11.4\\sysgen\\keycodes",
"postgresbin" : "C:\\Program Files\\ArcGIS\\DataStore\\framework\\runtime\\pgsql\\bin",
"master_username": "EsriRDSAdmin",
"master_password": "changeit",
Expand All @@ -146,7 +147,7 @@ Attributes used by the recipe:
"database": "egdb",
"data_item_path": "/enterpriseDatabases/registeredDatabase",
"connection_file": "C:\\chef\\msic_scripts\\connection_files\\RDS_egdb.sde",
"is_managed": true,
"is_managed": false,
"connection_type": "shared"
}]
}
Expand All @@ -166,7 +167,7 @@ Attributes used by the recipe:
```JSON
{
"arcgis": {
"version": "11.3",
"version": "11.4",
"server": {
"install_dir": "C:\\Program Files\\ArcGIS\\Server"
},
Expand All @@ -175,15 +176,15 @@ Attributes used by the recipe:
},
"egdb": {
"endpoint": "xxx.cluster-yyy.us-east-2.rds.amazonaws.com",
"keycodes": "C:\\Program Files\\ESRI\\License11.3\\sysgen\\keycodes",
"keycodes": "C:\\Program Files\\ESRI\\License11.4\\sysgen\\keycodes",
"master_username": "EsriRDSAdmin",
"master_password": "changeit",
"db_password": "changeit",
"data_items": [{
"database": "egdb",
"data_item_path": "/enterpriseDatabases/registeredDatabase",
"connection_file": "C:\\chef\\msic_scripts\\connection_files\\RDS_egdb.sde",
"is_managed": true,
"is_managed": false,
"connection_type": "shared"
}]
}
Expand Down Expand Up @@ -213,7 +214,7 @@ Attributes used by the recipe:
"database": "egdb",
"data_item_path": "/enterpriseDatabases/registeredDatabase",
"connection_file": "C:\\chef\\msic_scripts\\connection_files\\RDS_egdb.sde",
"is_managed": true,
"is_managed": false,
"connection_type": "shared"
}]
}
Expand Down
2 changes: 1 addition & 1 deletion cookbooks/arcgis-egdb/attributes/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'database' => 'egdb',
'data_item_path' => '/enterpriseDatabases/registeredDatabase',
'connection_file' => ::File.join(node['arcgis']['egdb']['connection_files_dir'], 'RDS_egdb.sde'),
'is_managed' => true,
'is_managed' => false,
'connection_type' => 'shared'
}]

Expand Down
4 changes: 2 additions & 2 deletions cookbooks/arcgis-egdb/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
license 'Apache 2.0'
description 'Creates enterprise geodatabases in SQL Server or PostgreSQL DBMS and registers them with ArcGIS Server.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '2.0.0'
version '2.1.0'
chef_version '>= 15.3' if defined? chef_version

depends 'arcgis-enterprise', '~> 5.0'
depends 'arcgis-enterprise', '~> 5.1'

supports 'windows'
supports 'ubuntu'
Expand Down
4 changes: 4 additions & 0 deletions cookbooks/arcgis-enterprise/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ arcgis-enterprise cookbook CHANGELOG

This file is used to list changes made in each version of the arcgis-enterprise cookbook.

5.1.0
-----
- Added support for ArcGIS Enterprise 11.4

5.0.0
-----
- Added support for ArcGIS Enterprise 11.3
Expand Down
Loading

0 comments on commit 56e8d9f

Please sign in to comment.