Upgrade Elasticsearch from 6.x to latest 7.x

This commit is contained in:
Râu Cao
2022-11-06 13:56:15 +01:00
parent 5a94050555
commit 3620a43190
10 changed files with 77 additions and 14 deletions

View File

@@ -156,7 +156,7 @@ elasticsearch_install 'elasticsearch'
```ruby
elasticsearch_install 'my_es_installation' do
type 'package' # type of install
version '7.3.0'
version '7.4.2'
action :install # could be :remove as well
end
```
@@ -177,7 +177,7 @@ end
```ruby
elasticsearch_install 'my_es_installation' do
type 'tarball' # type of install
version '7.3.0'
version '7.4.2'
action :install # could be :remove as well
end
```