k8s-deploy 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d15916782174de67fb36bb5aba738adaeb8e6d0
4
- data.tar.gz: 6c68cac0cb03db700fba05b1862d3088d8a21cf3
3
+ metadata.gz: 4b0fc1be7c841d987d329b1df804520f0f64765e
4
+ data.tar.gz: 89d8060388b2e5243c428978ff545f52125175a4
5
5
  SHA512:
6
- metadata.gz: 2ebe797868e36cd416ba4c3f56e2d9b92fca3012efe18311de2348a1302974b9f64cbf74d7974f7453a5c123795ce2785267376249b35541cf2638c877a63c35
7
- data.tar.gz: 05e4f240b55bd3a12e9faf8a918b95ec5ab23d04370622d62c475aa0e18ec2423f44677afdc390b17872d242ab111899eb08a7f068ba6e7c431efa2086ff0539
6
+ metadata.gz: 7ba41ff3b4d4119942e367e36d219bb1e2d132159f82e338132bb255c242914f1ef35ea114bde9365e4084ebc8542e7c33fd3a60c5fe863bdd4aa512ded15f2f
7
+ data.tar.gz: 8e89dfc80554d9d4617c4fbf859107898f6f3db286b13f4351eac9a22cd60e7b439a83a34a3174893af4c1fa0740302c6310b3fdd453a58243268660ec2c87ec
@@ -28,7 +28,7 @@ end
28
28
 
29
29
  def print_gcloud_check_project(configuration)
30
30
  conf_gcloud_project = configuration['gcloud_project_name']
31
- current_gcloud_project = `gcloud config get-value project`
31
+ current_gcloud_project = `gcloud beta config get-value project`
32
32
  check_result = current_gcloud_project.include?(conf_gcloud_project)
33
33
 
34
34
  puts 'Your GCloud project should be ' \
@@ -53,7 +53,7 @@ end
53
53
 
54
54
  def print_deploy_push(configuration)
55
55
  new_image_name = build_full_image_name(configuration)
56
- command = "gcloud docker push #{new_image_name}"
56
+ command = "gcloud docker -- push #{new_image_name}"
57
57
  command_output(command)
58
58
  puts
59
59
  system command
@@ -3,5 +3,5 @@
3
3
  class K8sDeploy
4
4
  ##
5
5
  # @return [String] the library version
6
- VERSION = '0.0.2'.freeze
6
+ VERSION = '0.0.3'.freeze
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: k8s-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleksii Leonov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-04 00:00:00.000000000 Z
11
+ date: 2016-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -62,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
62
62
  version: '0'
63
63
  requirements: []
64
64
  rubyforge_project:
65
- rubygems_version: 2.6.4
65
+ rubygems_version: 2.5.1
66
66
  signing_key:
67
67
  specification_version: 4
68
68
  summary: automate deploy to Kubernetes.