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 +4 -4
- data/lib/k8s-deploy/tasks/check.rb +1 -1
- data/lib/k8s-deploy/tasks/deploy.rb +1 -1
- data/lib/k8s-deploy/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b0fc1be7c841d987d329b1df804520f0f64765e
|
4
|
+
data.tar.gz: 89d8060388b2e5243c428978ff545f52125175a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
data/lib/k8s-deploy/version.rb
CHANGED
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.
|
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-
|
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.
|
65
|
+
rubygems_version: 2.5.1
|
66
66
|
signing_key:
|
67
67
|
specification_version: 4
|
68
68
|
summary: automate deploy to Kubernetes.
|