foreman_azure_rm 2.2.6 → 2.2.7
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17a61e0daa9ad81dba459c8976da8712fae9a1ff4b52aeb85c6a04f7aa9d5be8
|
4
|
+
data.tar.gz: e7469e41dcf4327afaf31de2b37be1f9119700419d6c22319df282e1e816451d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cfe08678137c3c193362eec308091a1a7a45cc359e70590228be1a1022090b8041dac66ec5bc2a8adeab945615b45c0df5b9b2be73c6239aef73a21503eb7ce
|
7
|
+
data.tar.gz: 22d9c5ce4049fe7546dc48bdfdb382b61f5f7f3afa961ef328da2a92eb64bee4c3bbbfe3abae40eb80fcbdb183712d32b2e7b7e27f76d15bc785272c6d4d6cad
|
@@ -123,7 +123,7 @@ module ForemanAzureRm
|
|
123
123
|
def create_nics(region, args = {})
|
124
124
|
nics = []
|
125
125
|
args[:interfaces_attributes].each do |nic, attrs|
|
126
|
-
private_ip =
|
126
|
+
private_ip = ActiveRecord::Type::Boolean.new.deserialize(attrs[:private_ip])
|
127
127
|
priv_ip_alloc = if private_ip
|
128
128
|
NetworkModels::IPAllocationMethod::Static
|
129
129
|
else
|
@@ -145,7 +145,7 @@ module ForemanAzureRm
|
|
145
145
|
volumes: vols,
|
146
146
|
script_command: opts[:script_command],
|
147
147
|
script_uris: opts[:script_uris],
|
148
|
-
nvidia_gpu_extension:
|
148
|
+
nvidia_gpu_extension: ActiveRecord::Type::Boolean.new.deserialize(opts[:nvidia_gpu_extension]),
|
149
149
|
)
|
150
150
|
end
|
151
151
|
|
@@ -291,16 +291,10 @@ module ForemanAzureRm
|
|
291
291
|
|
292
292
|
if args[:platform] == 'Linux'
|
293
293
|
if args[:password].present? && !args[:ssh_key_data].present?
|
294
|
-
# Any change to sudoers_cmd and formation of new
|
295
|
-
# args[:script_command] must be accordingly changed
|
296
|
-
# in script_command method in AzureRmCompute class
|
297
|
-
sudoers_cmd = "$echo #{args[:password]} | sudo -S echo '\"#{args[:username]}\" ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/waagent"
|
298
294
|
if args[:script_command].present?
|
299
295
|
# to run the script_cmd given through form as username
|
300
296
|
user_command = args[:script_command]
|
301
|
-
args[:script_command] =
|
302
|
-
else
|
303
|
-
args[:script_command] = sudoers_cmd
|
297
|
+
args[:script_command] = "su - \"#{args[:username]}\" -c \"#{user_command}\""
|
304
298
|
end
|
305
299
|
disable_password_auth = false
|
306
300
|
elsif args[:ssh_key_data].present? && !args[:password].present?
|
@@ -334,7 +328,7 @@ module ForemanAzureRm
|
|
334
328
|
)
|
335
329
|
logger.debug "Virtual Machine #{args[:vm_name]} Created Successfully."
|
336
330
|
# request NVIDIA GPU driver and CUDA stack
|
337
|
-
if
|
331
|
+
if ActiveRecord::Type::Boolean.new.deserialize(args[:nvidia_gpu_extension])
|
338
332
|
create_vm_nvidia_gpu_extension(region, args)
|
339
333
|
end
|
340
334
|
# as this extension may contains postinstall script, call it after others
|
@@ -348,7 +342,7 @@ module ForemanAzureRm
|
|
348
342
|
volumes: vm_disks(vm),
|
349
343
|
script_command: user_command,
|
350
344
|
script_uris: args[:script_uris],
|
351
|
-
nvidia_gpu_extension:
|
345
|
+
nvidia_gpu_extension: ActiveRecord::Type::Boolean.new.deserialize(args[:nvidia_gpu_extension]),
|
352
346
|
tags: args[:tags],
|
353
347
|
)
|
354
348
|
rescue RuntimeError => e
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_azure_rm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aditi Puntambekar
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-09-08 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: azure_mgmt_resources
|