Skip to content

Commit

Permalink
Update default Graylog version to 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bernd committed Aug 14, 2023
1 parent 2ac5f20 commit abe868a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ elasticsearch::instance { 'graylog':
}
class { 'graylog::repository':
version => '4.2'
version => '5.1'
}->
class { 'graylog::server':
package_version => '4.2.0-3',
package_version => '5.1.0-6',
config => {
'password_secret' => '...', # Fill in your password secret
'root_password_sha2' => '...', # Fill in your root password hash
Expand All @@ -123,7 +123,7 @@ class { 'graylog::server':

```puppet
class { '::graylog::repository':
version => '4.2'
version => '5.1'
}->
class { '::graylog::server':
config => {
Expand Down Expand Up @@ -183,7 +183,7 @@ version.

It defaults to `$graylog::params::major_version`.

Example: `version => '4.2'`
Example: `version => '5.1'`

##### `url`

Expand Down Expand Up @@ -214,7 +214,7 @@ This setting is used to choose the Graylog package version. It defaults to
install time. You can also use `latest` so it will always update to the latest
stable version if a new one is available.

Example: `package_version => '4.2.0-3'`
Example: `package_version => '5.1.0-6'`

##### `config`

Expand Down Expand Up @@ -330,7 +330,7 @@ Example:

```
graylog => {
major_version => '4.2',
major_version => '5.1',
config => {
# ... see graylog::server description for details
},
Expand All @@ -343,6 +343,7 @@ Supported Graylog versions:

* 3.x
* 4.x
* 5.x

Supported platforms:

Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class graylog::params {
$major_version = '4.2'
$major_version = '5.1'
$package_version = 'installed'

$repository_release = 'stable'
Expand Down
2 changes: 1 addition & 1 deletion tests/vagrant.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
version => '7.10.2',
},
graylog => {
major_version => '4.2',
major_version => '5.1',
config => {
'password_secret' => '16BKgz0Qelg6eFeJYh8lc4hWU1jJJmAgHlPEx6qkBa2cQQTUG300FYlPOEvXsOV4smzRtnwjHAKykE3NIWXbpL7yGLN7V2P2',
'root_password_sha2' => '8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918',
Expand Down

0 comments on commit abe868a

Please sign in to comment.