Skip to content

Commit c38c3ae

Browse files
authored
Merge pull request #15 from puppetlabs/release-prep
Release prep v0.2.1
2 parents 8991785 + 662c6ce commit c38c3ae

File tree

3 files changed

+23
-14
lines changed

3 files changed

+23
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [v0.2.1](https://github.com/puppetlabs/influxdb/tree/v0.2.1) (2022-03-07)
6+
7+
[Full Changelog](https://github.com/puppetlabs/influxdb/compare/v0.2.0...v0.2.1)
8+
9+
### Fixed
10+
11+
- Check use\_ssl is not nil [\#11](https://github.com/puppetlabs/influxdb/pull/11) ([ryanjbull](https://github.com/ryanjbull))
12+
513
## [v0.2.0](https://github.com/puppetlabs/influxdb/tree/v0.2.0) (2022-03-01)
614

715
[Full Changelog](https://github.com/puppetlabs/influxdb/compare/v0.1.0...v0.2.0)

REFERENCE.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### Classes
88

9-
* [`influxdb::install`](#influxdbinstall): Installs, configures, and performs initial setup of InfluxDB 2.x
9+
* [`influxdb`](#influxdb): Installs, configures, and performs initial setup of InfluxDB 2.x
1010
* [`influxdb::profile::toml`](#influxdbprofiletoml): Installs the toml-rb gem inside Puppet server
1111

1212
### Resource types
@@ -28,7 +28,7 @@
2828

2929
## Classes
3030

31-
### <a name="influxdbinstall"></a>`influxdb::install`
31+
### <a name="influxdb"></a>`influxdb`
3232

3333
Installs, configures, and performs initial setup of InfluxDB 2.x
3434

@@ -37,17 +37,17 @@ Installs, configures, and performs initial setup of InfluxDB 2.x
3737
##### Basic usage
3838

3939
```puppet
40-
include influxdb::install
40+
include influxdb
4141
42-
class {'influxdb::install':
42+
class {'influxdb':
4343
initial_org => 'my_org',
4444
initial_bucket => 'my_bucket',
4545
}
4646
```
4747

4848
#### Parameters
4949

50-
The following parameters are available in the `influxdb::install` class:
50+
The following parameters are available in the `influxdb` class:
5151

5252
* [`manage_repo`](#manage_repo)
5353
* [`manage_setup`](#manage_setup)
@@ -59,12 +59,13 @@ The following parameters are available in the `influxdb::install` class:
5959
* [`ssl_cert_file`](#ssl_cert_file)
6060
* [`ssl_key_file`](#ssl_key_file)
6161
* [`ssl_ca_file`](#ssl_ca_file)
62-
* [`influxdb_host`](#influxdb_host)
62+
* [`host`](#host)
6363
* [`intial_org`](#intial_org)
6464
* [`intial_bucket`](#intial_bucket)
6565
* [`admin_user`](#admin_user)
6666
* [`admin_pass`](#admin_pass)
6767
* [`token_file`](#token_file)
68+
* [`port`](#port)
6869
* [`initial_org`](#initial_org)
6970
* [`initial_bucket`](#initial_bucket)
7071

@@ -149,14 +150,12 @@ CA certificate issued by the CA which signed the certificate specified by $ssl_c
149150

150151
Default value: `'/etc/puppetlabs/puppet/ssl/certs/ca.pem'`
151152

152-
##### <a name="influxdb_host"></a>`influxdb_host`
153+
##### <a name="host"></a>`host`
153154

154155
Data type: `String`
155156

156157
fqdn of the host running InfluxDB. Defaults to the fqdn of the local machine
157158

158-
Default value: `$facts['fqdn']`
159-
160159
##### <a name="intial_org"></a>`intial_org`
161160

162161
Name of the initial organization to use during initial setup. Defaults to puppetlabs
@@ -190,22 +189,24 @@ Note that functions or code run in Puppet server will not be able to use this fi
190189

191190
Default value: `$facts['identity']['user']`
192191

192+
##### <a name="port"></a>`port`
193+
194+
Data type: `Integer`
195+
196+
197+
193198
##### <a name="initial_org"></a>`initial_org`
194199

195200
Data type: `String`
196201

197202

198203

199-
Default value: `'puppetlabs'`
200-
201204
##### <a name="initial_bucket"></a>`initial_bucket`
202205

203206
Data type: `String`
204207

205208

206209

207-
Default value: `'puppet_data'`
208-
209210
### <a name="influxdbprofiletoml"></a>`influxdb::profile::toml`
210211

211212
Installs the toml-rb gem inside Puppet server

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-influxdb",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"author": "Adrian Parreiras Horta",
55
"summary": "Installs and configures InfluxDB 2",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)