Update the elasticsearch cookbook

This commit is contained in:
Greg Karékinian
2023-06-29 16:39:09 +02:00
parent 68ce3c4834
commit 7683de09a2
48 changed files with 2016 additions and 2065 deletions

View File

@@ -0,0 +1,12 @@
include ElasticsearchCookbook::Helpers
include ElasticsearchCookbook::VersionHelpers
property :instance_name,
String
property :version,
String,
default: '7.17.9'
property :package_options,
String

View File

@@ -0,0 +1,7 @@
property :download_url,
String,
default: lazy { default_download_url(new_resource.version) }
property :download_checksum,
String,
default: lazy { default_download_checksum(new_resource.version)[checksum_platform] }

View File

@@ -0,0 +1,3 @@
property :enable_repository_actions,
[true, false],
default: true