ops_manager_cli 0.7.1 → 0.7.2

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8992b156cebae9e672d078b6da9b8657a650b093
4
- data.tar.gz: 70fab26214ffab2248756aa0e281fb287acd0e5e
3
+ metadata.gz: 54353d2183e22dbc6336cfa9effb657045473c3e
4
+ data.tar.gz: 757e9c28fcee50edcc0a9cf966bb1bd509b4320a
5
5
  SHA512:
6
- metadata.gz: c2e769b03f59448e5e415f141d2dac8d6009ae272c748c20aabb98b8c6ea6b70d38ada89d20c335e13daafe79fbb9ec9a44be775a7ca3750d69396a20459606e
7
- data.tar.gz: 3ef3595a66344221983bdde63e1c770a3422453286656bdf572f2d8b4f66c6e8a4e01ed8549e2bd4672246c4f508e3d789fcee5542fd5f67acc69f138f07d201
6
+ metadata.gz: c7b416fa774836542dae54ccd31023254b95449a021dd9f804664421d0c49d805249b7b60433245daba46658d560fbab5b83c09f6e3d3f37ecda7cc6971efc15
7
+ data.tar.gz: 6859701012082484571dba53af2780d7d4b8769d554b673a89ee1b61a2111fa7b89af37ada4c377f8de82408cc6e0e51dd036e1d3b77b05d1ca31b325a4a7889
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.7.1](https://github.com/compozed/ops_manager_cli/tree/v0.7.1) (2017-10-25)
4
+ [Full Changelog](https://github.com/compozed/ops_manager_cli/compare/v0.7.0...v0.7.1)
5
+
6
+ Fix issue when opsman appliance is starting on AWS
7
+
8
+ ## [v0.7.0](https://github.com/compozed/ops_manager_cli/tree/v0.7.0) (2017-10-20)
9
+ [Full Changelog](https://github.com/compozed/ops_manager_cli/compare/v0.5.4...v0.7.0)
10
+
11
+ **Closed issues:**
12
+
13
+ - OpsMAnagerCli should support new errands endpoint in versions \>= 1.10 [\#32](https://github.com/compozed/ops_manager_cli/issues/32)
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Added support for ops\_manager\_cli to deploy via AWS [\#34](https://github.com/compozed/ops_manager_cli/pull/34) ([geofffranks](https://github.com/geofffranks))
18
+ - Add pending-changes CLI command [\#26](https://github.com/compozed/ops_manager_cli/pull/26) ([RMeharg](https://github.com/RMeharg))
19
+
3
20
  ## [v0.5.4](https://github.com/compozed/ops_manager_cli/tree/v0.5.4) (2017-06-27)
4
21
  [Full Changelog](https://github.com/compozed/ops_manager_cli/compare/v0.5.3...v0.5.4)
5
22
 
@@ -81,4 +98,4 @@
81
98
  ## [v0.1.1](https://github.com/compozed/ops_manager_cli/tree/v0.1.1) (2016-05-06)
82
99
 
83
100
 
84
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
101
+ \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
@@ -47,7 +47,7 @@ class OpsManager
47
47
 
48
48
  def get_installation_assets
49
49
  opts = { write_to: "installation_assets.zip" }
50
- say_green '====> Download installation assets ...'
50
+ print_green '====> Download installation assets ...'
51
51
  res = authenticated_get("/api/v0/installation_asset_collection", opts)
52
52
  say_green 'done'
53
53
  res
@@ -118,7 +118,8 @@ class OpsManager::ApplianceDeployment
118
118
  # Lists all the available stemcells in the current installation_settings.
119
119
  # Downloads those stemcells.
120
120
  def download_current_stemcells
121
- puts "Downloading existing stemcells ...".green
121
+ print "====> Downloading existing stemcells ...".green
122
+ puts "no stemcells found".green if list_current_stemcells.empty?
122
123
  FileUtils.mkdir_p current_stemcell_dir
123
124
  list_current_stemcells.each do |stemcell_version|
124
125
  release_id = find_stemcell_release(stemcell_version)
@@ -19,11 +19,11 @@ class OpsManager
19
19
  delete_from_jobs(property_name)
20
20
  end
21
21
 
22
- %w{ password secret salt private_key_pem }.each do |property_name|
22
+ %w{ password secret salt }.each do |property_name|
23
23
  delete_value_from_job_properties(property_name)
24
24
  end
25
25
 
26
- %w{ secret private_key_pem }.each do |property_name|
26
+ %w{ secret }.each do |property_name|
27
27
  delete_value_from_product_properties(property_name)
28
28
  end
29
29
 
@@ -1,3 +1,3 @@
1
1
  class OpsManager
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ops_manager_cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - CompoZed
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-10-30 00:00:00.000000000 Z
11
+ date: 2017-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler