manageiq-appliance_console 5.3.2 → 6.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +24 -25
- data/.rspec_ci +2 -0
- data/.rubocop.yml +3 -3
- data/.rubocop_cc.yml +3 -4
- data/.rubocop_local.yml +1 -1
- data/.travis.yml +4 -3
- data/Gemfile +1 -3
- data/README.md +1 -2
- data/Rakefile +20 -1
- data/bin/appliance_console +44 -7
- data/lib/manageiq-appliance_console.rb +2 -5
- data/lib/manageiq/appliance_console/certificate_authority.rb +1 -1
- data/lib/manageiq/appliance_console/cli.rb +66 -1
- data/lib/manageiq/appliance_console/database_configuration.rb +2 -1
- data/lib/manageiq/appliance_console/database_replication.rb +1 -1
- data/lib/manageiq/appliance_console/database_replication_standby.rb +1 -1
- data/lib/manageiq/appliance_console/internal_database_configuration.rb +1 -1
- data/lib/manageiq/appliance_console/logfile_configuration.rb +2 -2
- data/lib/manageiq/appliance_console/message_configuration.rb +199 -0
- data/lib/manageiq/appliance_console/message_configuration_client.rb +96 -0
- data/lib/manageiq/appliance_console/message_configuration_server.rb +319 -0
- data/lib/manageiq/appliance_console/oidc_authentication.rb +43 -4
- data/lib/manageiq/appliance_console/postgres_admin.rb +325 -0
- data/lib/manageiq/appliance_console/utilities.rb +45 -1
- data/lib/manageiq/appliance_console/version.rb +1 -1
- data/locales/appliance/en.yml +3 -3
- data/locales/container/en.yml +3 -3
- data/manageiq-appliance_console.gemspec +6 -2
- metadata +83 -12
data/locales/appliance/en.yml
CHANGED
@@ -8,7 +8,7 @@ en:
|
|
8
8
|
- dbbackup
|
9
9
|
- dbdump
|
10
10
|
- dbrestore
|
11
|
-
-
|
11
|
+
- app_config
|
12
12
|
- db_replication
|
13
13
|
- log_config
|
14
14
|
- failover_monitor
|
@@ -25,10 +25,10 @@ en:
|
|
25
25
|
dbbackup: Create Database Backup
|
26
26
|
dbdump: Create Database Dump
|
27
27
|
dbrestore: Restore Database From Backup
|
28
|
-
|
28
|
+
app_config: Configure Application
|
29
29
|
db_replication: Configure Database Replication
|
30
30
|
log_config: Logfile Configuration
|
31
|
-
failover_monitor:
|
31
|
+
failover_monitor: Control Application Database Failover Monitor
|
32
32
|
httpdauth: Configure External Authentication (httpd)
|
33
33
|
extauth_opts: Update External Authentication Options
|
34
34
|
evmstop: Stop EVM Server Processes
|
data/locales/container/en.yml
CHANGED
@@ -5,7 +5,7 @@ en:
|
|
5
5
|
advanced_settings:
|
6
6
|
menu_order:
|
7
7
|
- dbrestore
|
8
|
-
-
|
8
|
+
- app_config
|
9
9
|
- db_replication
|
10
10
|
- failover_monitor
|
11
11
|
- key_gen
|
@@ -15,9 +15,9 @@ en:
|
|
15
15
|
- summary
|
16
16
|
- quit
|
17
17
|
dbrestore: Restore Database From Backup
|
18
|
-
|
18
|
+
app_config: Configure Application
|
19
19
|
db_replication: Configure Database Replication
|
20
|
-
failover_monitor:
|
20
|
+
failover_monitor: Control Application Database Failover Monitor
|
21
21
|
evmstop: Stop EVM Server Processes
|
22
22
|
key_gen: Generate Custom Encryption Key
|
23
23
|
evmstart: Start EVM Server Processes
|
@@ -20,19 +20,23 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
21
21
|
spec.require_paths = ["lib"]
|
22
22
|
|
23
|
-
spec.add_runtime_dependency "activerecord", "
|
24
|
-
spec.add_runtime_dependency "activesupport", "
|
23
|
+
spec.add_runtime_dependency "activerecord", "~> 6.0.3.5"
|
24
|
+
spec.add_runtime_dependency "activesupport", "~> 6.0.3.5"
|
25
25
|
spec.add_runtime_dependency "awesome_spawn", "~> 1.4"
|
26
26
|
spec.add_runtime_dependency "bcrypt", "~> 3.1.10"
|
27
|
+
spec.add_runtime_dependency "bcrypt_pbkdf", ">= 1.0", "< 2.0"
|
27
28
|
spec.add_runtime_dependency "highline", "~> 1.6.21"
|
28
29
|
spec.add_runtime_dependency "i18n", "~> 0.8"
|
29
30
|
spec.add_runtime_dependency "linux_admin", "~> 2.0"
|
30
31
|
spec.add_runtime_dependency "manageiq-password", "~> 0.3"
|
32
|
+
spec.add_runtime_dependency "net-scp", "~> 1.2.1"
|
31
33
|
spec.add_runtime_dependency "optimist", "~> 3.0"
|
32
34
|
spec.add_runtime_dependency "pg"
|
35
|
+
spec.add_runtime_dependency "rbnacl", ">= 3.2", "< 5.0"
|
33
36
|
|
34
37
|
spec.add_development_dependency "bundler"
|
35
38
|
spec.add_development_dependency "codeclimate-test-reporter", "~> 1.0.0"
|
39
|
+
spec.add_development_dependency "manageiq-style"
|
36
40
|
spec.add_development_dependency "rake"
|
37
41
|
spec.add_development_dependency "rspec", "~> 3.0"
|
38
42
|
spec.add_development_dependency "rubocop"
|
metadata
CHANGED
@@ -1,43 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: manageiq-appliance_console
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ManageIQ Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 6.0.3.5
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 6.0.3.5
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: activesupport
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 6.0.3.5
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 6.0.3.5
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: awesome_spawn
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,6 +66,26 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 3.1.10
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bcrypt_pbkdf
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.0'
|
76
|
+
- - "<"
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '2.0'
|
79
|
+
type: :runtime
|
80
|
+
prerelease: false
|
81
|
+
version_requirements: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - ">="
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '1.0'
|
86
|
+
- - "<"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.0'
|
69
89
|
- !ruby/object:Gem::Dependency
|
70
90
|
name: highline
|
71
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -122,6 +142,20 @@ dependencies:
|
|
122
142
|
- - "~>"
|
123
143
|
- !ruby/object:Gem::Version
|
124
144
|
version: '0.3'
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: net-scp
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - "~>"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: 1.2.1
|
152
|
+
type: :runtime
|
153
|
+
prerelease: false
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - "~>"
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: 1.2.1
|
125
159
|
- !ruby/object:Gem::Dependency
|
126
160
|
name: optimist
|
127
161
|
requirement: !ruby/object:Gem::Requirement
|
@@ -150,6 +184,26 @@ dependencies:
|
|
150
184
|
- - ">="
|
151
185
|
- !ruby/object:Gem::Version
|
152
186
|
version: '0'
|
187
|
+
- !ruby/object:Gem::Dependency
|
188
|
+
name: rbnacl
|
189
|
+
requirement: !ruby/object:Gem::Requirement
|
190
|
+
requirements:
|
191
|
+
- - ">="
|
192
|
+
- !ruby/object:Gem::Version
|
193
|
+
version: '3.2'
|
194
|
+
- - "<"
|
195
|
+
- !ruby/object:Gem::Version
|
196
|
+
version: '5.0'
|
197
|
+
type: :runtime
|
198
|
+
prerelease: false
|
199
|
+
version_requirements: !ruby/object:Gem::Requirement
|
200
|
+
requirements:
|
201
|
+
- - ">="
|
202
|
+
- !ruby/object:Gem::Version
|
203
|
+
version: '3.2'
|
204
|
+
- - "<"
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
version: '5.0'
|
153
207
|
- !ruby/object:Gem::Dependency
|
154
208
|
name: bundler
|
155
209
|
requirement: !ruby/object:Gem::Requirement
|
@@ -178,6 +232,20 @@ dependencies:
|
|
178
232
|
- - "~>"
|
179
233
|
- !ruby/object:Gem::Version
|
180
234
|
version: 1.0.0
|
235
|
+
- !ruby/object:Gem::Dependency
|
236
|
+
name: manageiq-style
|
237
|
+
requirement: !ruby/object:Gem::Requirement
|
238
|
+
requirements:
|
239
|
+
- - ">="
|
240
|
+
- !ruby/object:Gem::Version
|
241
|
+
version: '0'
|
242
|
+
type: :development
|
243
|
+
prerelease: false
|
244
|
+
version_requirements: !ruby/object:Gem::Requirement
|
245
|
+
requirements:
|
246
|
+
- - ">="
|
247
|
+
- !ruby/object:Gem::Version
|
248
|
+
version: '0'
|
181
249
|
- !ruby/object:Gem::Dependency
|
182
250
|
name: rake
|
183
251
|
requirement: !ruby/object:Gem::Requirement
|
@@ -279,7 +347,11 @@ files:
|
|
279
347
|
- lib/manageiq/appliance_console/logger.rb
|
280
348
|
- lib/manageiq/appliance_console/logging.rb
|
281
349
|
- lib/manageiq/appliance_console/logical_volume_management.rb
|
350
|
+
- lib/manageiq/appliance_console/message_configuration.rb
|
351
|
+
- lib/manageiq/appliance_console/message_configuration_client.rb
|
352
|
+
- lib/manageiq/appliance_console/message_configuration_server.rb
|
282
353
|
- lib/manageiq/appliance_console/oidc_authentication.rb
|
354
|
+
- lib/manageiq/appliance_console/postgres_admin.rb
|
283
355
|
- lib/manageiq/appliance_console/principal.rb
|
284
356
|
- lib/manageiq/appliance_console/prompts.rb
|
285
357
|
- lib/manageiq/appliance_console/saml_authentication.rb
|
@@ -310,8 +382,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
310
382
|
- !ruby/object:Gem::Version
|
311
383
|
version: '0'
|
312
384
|
requirements: []
|
313
|
-
|
314
|
-
rubygems_version: 2.7.6.2
|
385
|
+
rubygems_version: 3.0.6
|
315
386
|
signing_key:
|
316
387
|
specification_version: 4
|
317
388
|
summary: ManageIQ Appliance Console
|