beaker-answers 0.19.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NGExODA0NjAzYmM2NzRmOGI4NzY2YmE2NjQ1MzRlODhmNzU5NjA2YQ==
4
+ ZDQzYzJiOGE0NDExNDI5NDY2NmMyZmNhNzBkZjFmZDg1NzYzNGVhYQ==
5
5
  data.tar.gz: !binary |-
6
- NWY0ODA1NTU4NTgxYTMwMDE4MDBhNTUwYWE5NGY4NjBlZmY2ZWVhZA==
6
+ ZTY1OTdhMGRjNzNiZTFkMmZiNjc3M2IwNTQ2ZTVlYjYwZDc5NDBkYQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZWU4N2E0NDg4NDFlMjY4YzQ3ZmU2MWVhMjg4NjcyYzE5NDllZTliZTk1MjM3
10
- YmEyNjg1ZGYyMDA0NjMwNWFmMWYwMGQ1ZjIwNjE3NzUwNzdkZjFmZDc4Mzll
11
- MGUzNTJmMTY3OGI0NTFiNTAyMjMxOGNmNjk4MWU0ZDhiZTZmMTc=
9
+ ZWQwYWQwNDFlNjQyYmM5ZDAzOWFkZWFhMDM3OGYwNWI3ZmI3NDdiN2Q0MDEx
10
+ ZTRlYzhjNDBhYThlY2Q2OTQ4ZWM5NDYyNmNhMzU3Nzg0ODQ5OWMzM2FmYTRj
11
+ NjM5YWNjYmU5OTlhNjMyMmQwMGI3MzI0YTkzNzhlNjc2ZmZkNTg=
12
12
  data.tar.gz: !binary |-
13
- ZDYzNGY3YTIzYTQ2NzVkYTc2OTBiOGVhZTg0YTNjYTU3ZTNkNTlhZGU2YTJl
14
- ZTAzMjJkMGM0NzQ5ZWRhN2ZmNjg5YWI4NDViOWY0YTFhMjIwMGZiMGVlNzU3
15
- NjQ5N2FhY2MxMjE1MjQyZmI4Mjg3YzhjODdlOThhNjNmOTk0Zjg=
13
+ NGQ0ZGU4MzJkZWMwMmU4M2UwOWViNjkwZDI3MzQwZWY2OTI0MGJjMTc3MmQz
14
+ NmY2NzE3N2M0MDA0OGUyYmE2ZWNiNjlkMGM5NzM2ODgyYjM4NDdjYTM1OTZm
15
+ MDg1Yzg1ZTE4MmViMWZlNGY1ZGZhNGMxZTMxMzQ0MmVkZmFlMGI=
@@ -195,6 +195,7 @@ module BeakerAnswers
195
195
  when '1.0','2.0'
196
196
  pe_conf["puppet_enterprise::database_ssl"] = true
197
197
  pe_conf["puppet_enterprise::database_cert_auth"] = true
198
+ pe_conf["puppet_enterprise::puppetdb::start_timeout"] = 300
198
199
  end
199
200
  pe_conf
200
201
  end
@@ -202,6 +203,7 @@ module BeakerAnswers
202
203
  def postgres_password_answers(pe_conf, meep_schema_version)
203
204
  case meep_schema_version
204
205
  when '1.0','2.0'
206
+ pe_conf["puppet_enterprise::puppetdb::start_timeout"] = 300
205
207
  pe_conf["puppet_enterprise::activity_database_password"] = "PASSWORD"
206
208
  pe_conf["puppet_enterprise::classifier_database_password"] = "PASSWORD"
207
209
  pe_conf["puppet_enterprise::orchestrator_database_password"] = "PASSWORD"
@@ -1,5 +1,5 @@
1
1
  module BeakerAnswers
2
2
  module Version
3
- STRING = '0.19.0'
3
+ STRING = '0.20.0'
4
4
  end
5
5
  end
@@ -103,7 +103,8 @@ describe 'BeakerAnswers::PeConf' do
103
103
  "puppet_enterprise::database_cert_auth" => true,
104
104
  "puppet_enterprise::database_ssl" => true,
105
105
  "puppet_enterprise::puppet_master_host" => basic_hosts[0].hostname,
106
- "puppet_enterprise::database_host" => basic_hosts[1].hostname
106
+ "puppet_enterprise::database_host" => basic_hosts[1].hostname,
107
+ "puppet_enterprise::puppetdb::start_timeout" => 300
107
108
  }
108
109
  end
109
110
  let(:gold_pe_postgres_password_configuration_hash) do
@@ -114,7 +115,8 @@ describe 'BeakerAnswers::PeConf' do
114
115
  "puppet_enterprise::puppetdb_database_password" => "PASSWORD",
115
116
  "puppet_enterprise::rbac_database_password" => "PASSWORD",
116
117
  "puppet_enterprise::puppet_master_host" => basic_hosts[0].hostname,
117
- "puppet_enterprise::database_host" => basic_hosts[1].hostname
118
+ "puppet_enterprise::database_host" => basic_hosts[1].hostname,
119
+ "puppet_enterprise::puppetdb::start_timeout" => 300,
118
120
  }
119
121
  end
120
122
  include_examples 'pe.conf configuration'
@@ -142,6 +144,7 @@ describe 'BeakerAnswers::PeConf' do
142
144
  "meep_schema_version" => "2.0",
143
145
  "puppet_enterprise::database_cert_auth" => true,
144
146
  "puppet_enterprise::database_ssl" => true,
147
+ "puppet_enterprise::puppetdb::start_timeout" => 300
145
148
  }
146
149
  end
147
150
  let(:gold_pe_postgres_password_configuration_hash) do
@@ -157,6 +160,7 @@ describe 'BeakerAnswers::PeConf' do
157
160
  "puppet_enterprise::orchestrator_database_password" => "PASSWORD",
158
161
  "puppet_enterprise::puppetdb_database_password" => "PASSWORD",
159
162
  "puppet_enterprise::rbac_database_password" => "PASSWORD",
163
+ "puppet_enterprise::puppetdb::start_timeout" => 300
160
164
  }
161
165
  end
162
166
  let(:gold_split_configuration_hash) do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-answers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.20.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppetlabs
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-12-20 00:00:00.000000000 Z
12
+ date: 2017-12-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec