vm_shepherd 3.0.6 → 3.0.7
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f86d26b80dc99b056384dcc0aaeb0f4bd70578e
|
|
4
|
+
data.tar.gz: 9da389b55c929e28cb629fc23a84c5c848aa9003
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2401aa7f8af3e5a35de71fac452db992e263b2c071ea8a112f2c445a372ce07615bea54892feaa6a7f7f2deb625ca9da11def4475bd898c695703b1ba09162fc
|
|
7
|
+
data.tar.gz: 3b310da5855b10284b4da2b1a3bf5f70315ac8e96b0248b0a03e0bcf0681d7ae0cd0eb189b3470dd9b9d8486bb4f0054257ed99fbdc3409ab030eba72e877bc7
|
|
@@ -116,6 +116,12 @@ module VmShepherd
|
|
|
116
116
|
def prepare_environment
|
|
117
117
|
end
|
|
118
118
|
|
|
119
|
+
def connection_options
|
|
120
|
+
{
|
|
121
|
+
:ssl_verify_peer => false
|
|
122
|
+
}
|
|
123
|
+
end
|
|
124
|
+
|
|
119
125
|
def service
|
|
120
126
|
@service ||= Fog::Compute.new(
|
|
121
127
|
provider: 'openstack',
|
|
@@ -123,6 +129,7 @@ module VmShepherd
|
|
|
123
129
|
openstack_username: username,
|
|
124
130
|
openstack_tenant: tenant,
|
|
125
131
|
openstack_api_key: api_key,
|
|
132
|
+
connection_options: connection_options,
|
|
126
133
|
)
|
|
127
134
|
end
|
|
128
135
|
|
|
@@ -134,6 +141,7 @@ module VmShepherd
|
|
|
134
141
|
openstack_tenant: tenant,
|
|
135
142
|
openstack_api_key: api_key,
|
|
136
143
|
openstack_endpoint_type: 'publicURL',
|
|
144
|
+
connection_options: connection_options,
|
|
137
145
|
)
|
|
138
146
|
end
|
|
139
147
|
|
|
@@ -144,6 +152,7 @@ module VmShepherd
|
|
|
144
152
|
openstack_username: username,
|
|
145
153
|
openstack_tenant: tenant,
|
|
146
154
|
openstack_api_key: api_key,
|
|
155
|
+
connection_options: connection_options,
|
|
147
156
|
)
|
|
148
157
|
end
|
|
149
158
|
|
|
@@ -154,6 +163,7 @@ module VmShepherd
|
|
|
154
163
|
openstack_username: username,
|
|
155
164
|
openstack_tenant: tenant,
|
|
156
165
|
openstack_api_key: api_key,
|
|
166
|
+
connection_options: connection_options,
|
|
157
167
|
)
|
|
158
168
|
end
|
|
159
169
|
|
data/lib/vm_shepherd/version.rb
CHANGED
|
@@ -43,6 +43,7 @@ module VmShepherd
|
|
|
43
43
|
openstack_username: openstack_options[:username],
|
|
44
44
|
openstack_tenant: openstack_options[:tenant],
|
|
45
45
|
openstack_api_key: openstack_options[:api_key],
|
|
46
|
+
connection_options: {:ssl_verify_peer => false},
|
|
46
47
|
}
|
|
47
48
|
)
|
|
48
49
|
openstack_vm_manager.service
|
|
@@ -59,6 +60,7 @@ module VmShepherd
|
|
|
59
60
|
openstack_tenant: openstack_options[:tenant],
|
|
60
61
|
openstack_api_key: openstack_options[:api_key],
|
|
61
62
|
openstack_endpoint_type: 'publicURL',
|
|
63
|
+
connection_options: {:ssl_verify_peer => false},
|
|
62
64
|
}
|
|
63
65
|
)
|
|
64
66
|
openstack_vm_manager.image_service
|
|
@@ -74,6 +76,7 @@ module VmShepherd
|
|
|
74
76
|
openstack_username: openstack_options[:username],
|
|
75
77
|
openstack_tenant: openstack_options[:tenant],
|
|
76
78
|
openstack_api_key: openstack_options[:api_key],
|
|
79
|
+
connection_options: {:ssl_verify_peer => false},
|
|
77
80
|
}
|
|
78
81
|
)
|
|
79
82
|
openstack_vm_manager.network_service
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vm_shepherd
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ops Manager Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-v1
|