knife-cfn 0.1.3 → 0.1.4
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.
- data/lib/chef/knife/cfn_create.rb +1 -1
- data/lib/chef/knife/cfn_update.rb +125 -0
- data/lib/knife-cnf/version.rb +2 -2
- metadata +3 -2
@@ -0,0 +1,125 @@
|
|
1
|
+
#
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
3
|
+
# you may not use this file except in compliance with the License.
|
4
|
+
# You may obtain a copy of the License at
|
5
|
+
#
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
#
|
14
|
+
|
15
|
+
require 'chef/knife'
|
16
|
+
require 'chef/knife/cfn_base'
|
17
|
+
|
18
|
+
class Chef
|
19
|
+
class Knife
|
20
|
+
class CfnUpdate < Chef::Knife::CfnBase
|
21
|
+
|
22
|
+
deps do
|
23
|
+
require 'fog'
|
24
|
+
require 'readline'
|
25
|
+
require 'chef/json_compat'
|
26
|
+
require 'chef/knife/bootstrap'
|
27
|
+
Chef::Knife::Bootstrap.load_deps
|
28
|
+
end
|
29
|
+
|
30
|
+
banner "knife cfn update <stack name> (options)"
|
31
|
+
|
32
|
+
option :capabilities,
|
33
|
+
:short => "-c CAPABILITY..",
|
34
|
+
:long => "--capabilities CAPABILITY1,CAPABILITY2,CAPABILITY3..",
|
35
|
+
:description => "The explicitly approved capabilities that may be used during this stack creation",
|
36
|
+
:proc => Proc.new { |capabilities| capabilities.split(',') }
|
37
|
+
|
38
|
+
option :disable_rollback,
|
39
|
+
:short => "-d",
|
40
|
+
:long => "--disable-rollback",
|
41
|
+
:description => "Flag to disable rollback of updates when failures are encountered. The default value is 'false'",
|
42
|
+
:proc => Proc.new { |d| Chef::Config[:knife][:disable_rollback] = "true" }
|
43
|
+
|
44
|
+
option :template_file,
|
45
|
+
:short => "-f TEMPLATE_FILE",
|
46
|
+
:long => "--template-file TEMPLATE_FILE",
|
47
|
+
:description => "Path to the file that contains the template",
|
48
|
+
:proc => Proc.new { |f| Chef::Config[:knife][:template_file] = f }
|
49
|
+
|
50
|
+
option :notification_arns,
|
51
|
+
:short => "-n NOTIFICATION_ARN1,NOTIFICATION_ARN2,NOTIFICATION_ARN3..",
|
52
|
+
:long => "--notification-arns VALUE1,VALUE2,VALUE3..",
|
53
|
+
:description => "SNS ARNs to receive notification about the stack",
|
54
|
+
:proc => Proc.new { |notification_arns| notification_arns.split(',') }
|
55
|
+
|
56
|
+
option :parameters,
|
57
|
+
:short => "-p 'key1=value1;key2=value2...'",
|
58
|
+
:long => "--parameters 'key1=value1;key2=value2...'",
|
59
|
+
:description => "Parameter values used to update the stack",
|
60
|
+
:proc => Proc.new { |parameters| parameters.split(';') }
|
61
|
+
|
62
|
+
option :timeout,
|
63
|
+
:short => "-t TIMEOUT_VALUE",
|
64
|
+
:long => "--timeout TIMEOUT_VALUE",
|
65
|
+
:description => " Stack update timeout in minutes",
|
66
|
+
:proc => Proc.new { |t| Chef::Config[:knife][:timeout] = t }
|
67
|
+
|
68
|
+
option :template_url,
|
69
|
+
:short => "-u TEMPLATE_URL",
|
70
|
+
:long => "--template-file TEMPLATE_URL",
|
71
|
+
:description => "Path of the URL that contains the template. This must be a reference to a template in an S3 bucket in the same region that the stack was created in",
|
72
|
+
:proc => Proc.new { |u| Chef::Config[:knife][:template_url] = u }
|
73
|
+
|
74
|
+
def run
|
75
|
+
$stdout.sync = true
|
76
|
+
|
77
|
+
validate!
|
78
|
+
|
79
|
+
stack_name = @name_args[0]
|
80
|
+
|
81
|
+
if stack_name.nil?
|
82
|
+
show_usage
|
83
|
+
ui.error("You must specify a stack name")
|
84
|
+
exit 1
|
85
|
+
end
|
86
|
+
|
87
|
+
begin
|
88
|
+
response = connection.update_stack(stack_name, create_update_def)
|
89
|
+
rescue Excon::Errors::BadRequest => e
|
90
|
+
i= e.response.body.index("<Message>")
|
91
|
+
j = e.response.body.index("</Message>")
|
92
|
+
if !i.nil? and !j.nil?
|
93
|
+
ui.error(e.response.body[i+9,j-i-9])
|
94
|
+
else
|
95
|
+
print "\n#{e.response.body}"
|
96
|
+
end
|
97
|
+
exit 1
|
98
|
+
else
|
99
|
+
message = "Stack #{stack_name} update started"
|
100
|
+
print "\n#{ui.color(message, :green)}\n"
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
def create_update_def
|
106
|
+
create_def = {}
|
107
|
+
template_file = locate_config_value(:template_file)
|
108
|
+
if template_file != nil and template_file != ""
|
109
|
+
doc = File.open(template_file, 'rb') { |file| file.read }
|
110
|
+
create_def['TemplateBody'] = doc
|
111
|
+
end
|
112
|
+
create_def['TemplateURL'] = locate_config_value(:template_url)
|
113
|
+
create_def['Capabilities'] = locate_config_value(:capabilities)
|
114
|
+
create_def['DisableRollback'] = locate_config_value(:disable_rollback)
|
115
|
+
create_def['NotificationARNs'] = locate_config_value(:notification_arns)
|
116
|
+
hashed_parameters={}
|
117
|
+
parameters = locate_config_value(:parameters)
|
118
|
+
parameters.map{ |t| key,val=t.split('='); hashed_parameters[key]=val} unless parameters.nil?
|
119
|
+
create_def['Parameters'] = hashed_parameters
|
120
|
+
create_def['TimeoutInMinutes'] = locate_config_value(:timeout)
|
121
|
+
create_def
|
122
|
+
end
|
123
|
+
|
124
|
+
end
|
125
|
+
end
|
data/lib/knife-cnf/version.rb
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
module KnifeCfn
|
2
|
-
VERSION = "0.1.
|
3
|
-
end
|
2
|
+
VERSION = "0.1.4"
|
3
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-cfn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-12-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: fog
|
@@ -54,6 +54,7 @@ files:
|
|
54
54
|
- lib/chef/knife/cfn_delete.rb
|
55
55
|
- lib/chef/knife/cfn_describe.rb
|
56
56
|
- lib/chef/knife/cfn_events.rb
|
57
|
+
- lib/chef/knife/cfn_update.rb
|
57
58
|
- lib/chef/knife/cfn_validate.rb
|
58
59
|
- lib/knife-cnf/version.rb
|
59
60
|
homepage: https://github.com/neillturner/knife-cfn
|