Skip to content

Commit

Permalink
Fix ports
Browse files Browse the repository at this point in the history
  • Loading branch information
syberalexis committed Apr 11, 2020
1 parent 21f335a commit 2d30b40
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## Release 0.1.2

**Bug Fixes**

- Fix port

## Release 0.1.1

**Bug Fixes**
Expand Down
4 changes: 2 additions & 2 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Data type: `Stdlib::Port`

Storj exporter port (required to be accessible).

Default value: 14002
Default value: 9651

##### `storj_host_address`

Expand All @@ -153,7 +153,7 @@ Data type: `Stdlib::Port`

Storj api port.

Default value: 9651
Default value: 14002

##### `manage_python`

Expand Down
6 changes: 3 additions & 3 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@

# Service
Variant[Stdlib::Ensure::Service, Enum['absent']] $service_ensure = 'running',
Stdlib::Port $port = 14002,
Stdlib::Port $port = 9651,
Stdlib::Host $storj_host_address = '127.0.0.1',
Stdlib::Port $storj_api_port = 9651,
Stdlib::Port $storj_api_port = 14002,

# Extra Management
Boolean $manage_python = true,
Expand All @@ -83,7 +83,7 @@

if $manage_python {
class { 'python':
version => '3',
version => 'python3',
}

Class['python'] -> Class['storj_exporter::service']
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "maeq-storj_exporter",
"version": "0.1.1",
"version": "0.1.2",
"author": "maeq",
"summary": "This module install Prometheus Exporter to Storj",
"license": "Apache-2.0",
Expand Down

0 comments on commit 2d30b40

Please sign in to comment.