foreman_azure_rm 2.2.11 → 3.0.0
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 +4 -4
- data/Rakefile +1 -2
- data/app/models/concerns/foreman_azure_rm/vm_extensions/managed_vm.rb +1 -1
- data/lib/foreman_azure_rm/engine.rb +10 -2
- data/lib/foreman_azure_rm/version.rb +1 -1
- metadata +3 -75
- data/locale/ca/foreman_azure_rm.edit.po +0 -272
- data/locale/ca/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/cs_CZ/foreman_azure_rm.edit.po +0 -276
- data/locale/cs_CZ/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/de/foreman_azure_rm.edit.po +0 -280
- data/locale/de/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/en/foreman_azure_rm.edit.po +0 -270
- data/locale/en/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/en_GB/foreman_azure_rm.edit.po +0 -274
- data/locale/en_GB/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/es/foreman_azure_rm.edit.po +0 -279
- data/locale/es/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/fr/foreman_azure_rm.edit.po +0 -277
- data/locale/fr/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/gl/foreman_azure_rm.edit.po +0 -272
- data/locale/gl/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/it/foreman_azure_rm.edit.po +0 -276
- data/locale/it/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/ja/foreman_azure_rm.edit.po +0 -275
- data/locale/ja/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/ka/foreman_azure_rm.edit.po +0 -272
- data/locale/ka/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/ko/foreman_azure_rm.edit.po +0 -273
- data/locale/ko/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/nl_NL/foreman_azure_rm.edit.po +0 -274
- data/locale/nl_NL/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/pl/foreman_azure_rm.edit.po +0 -275
- data/locale/pl/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/pt_BR/foreman_azure_rm.edit.po +0 -278
- data/locale/pt_BR/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/ru/foreman_azure_rm.edit.po +0 -278
- data/locale/ru/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/sv_SE/foreman_azure_rm.edit.po +0 -274
- data/locale/sv_SE/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/zh_CN/foreman_azure_rm.edit.po +0 -275
- data/locale/zh_CN/foreman_azure_rm.po.time_stamp +0 -0
- data/locale/zh_TW/foreman_azure_rm.edit.po +0 -274
- data/locale/zh_TW/foreman_azure_rm.po.time_stamp +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54f6b75aec09011c7b07c50b5f3c74bdd5ece0a550bee03ec5f2369008b3a4f6
|
|
4
|
+
data.tar.gz: eb2d09ec4fbb03f52e8e538bb87e71bbf75a8d2bfc2ca8c7c966cefb6627559d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 629763e8c58a07e4fe5208eeb0bff59947d003a43ed3acf0aec0a626f92ca9b7692b45c30a124dba99b7f9319b8a337ab90d855341e46c3293c670bc1c8c3837
|
|
7
|
+
data.tar.gz: b875215cb9586bce7cbef260e55d49e598843027f138b901adb4754201dbfcee6acf3452e3c9e840eeb1db98c41cf316dc78a4004184fd2e028ede8a50b8427c
|
data/Rakefile
CHANGED
|
@@ -4,12 +4,12 @@ module ForemanAzureRm
|
|
|
4
4
|
|
|
5
5
|
#autoloading all files inside lib dir
|
|
6
6
|
config.eager_load_paths += Dir["#{config.root}/lib"]
|
|
7
|
-
config.eager_load_paths += Dir["#{config.root}/app/models/concerns/
|
|
7
|
+
config.eager_load_paths += Dir["#{config.root}/app/models/concerns/"]
|
|
8
8
|
config.eager_load_paths += Dir["#{config.root}/app/helpers/"]
|
|
9
9
|
|
|
10
10
|
initializer 'foreman_azure_rm.register_plugin', :before => :finisher_hook do
|
|
11
11
|
Foreman::Plugin.register :foreman_azure_rm do
|
|
12
|
-
requires_foreman '>= 3.
|
|
12
|
+
requires_foreman '>= 3.13'
|
|
13
13
|
register_gettext
|
|
14
14
|
compute_resource ForemanAzureRm::AzureRm
|
|
15
15
|
parameter_filter ComputeResource, :azure_vm, :tenant, :app_ident, :secret_key, :sub_id, :region, :cloud
|
|
@@ -29,6 +29,14 @@ module ForemanAzureRm
|
|
|
29
29
|
end
|
|
30
30
|
end
|
|
31
31
|
|
|
32
|
+
initializer "foreman_azure_rm.zeitwerk" do
|
|
33
|
+
Rails.autoloaders.each do |loader|
|
|
34
|
+
loader.ignore(
|
|
35
|
+
ForemanAzureRm::Engine.root.join('lib/foreman_azure_rm/version.rb')
|
|
36
|
+
)
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
32
40
|
config.to_prepare do
|
|
33
41
|
require 'azure_mgmt_resources'
|
|
34
42
|
require 'azure_mgmt_network'
|
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:
|
|
4
|
+
version: 3.0.0
|
|
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: 2024-09-13 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: azure_mgmt_resources
|
|
@@ -82,40 +82,6 @@ dependencies:
|
|
|
82
82
|
- - "~>"
|
|
83
83
|
- !ruby/object:Gem::Version
|
|
84
84
|
version: 0.18.5
|
|
85
|
-
- !ruby/object:Gem::Dependency
|
|
86
|
-
name: rubocop
|
|
87
|
-
requirement: !ruby/object:Gem::Requirement
|
|
88
|
-
requirements:
|
|
89
|
-
- - ">="
|
|
90
|
-
- !ruby/object:Gem::Version
|
|
91
|
-
version: '0'
|
|
92
|
-
type: :development
|
|
93
|
-
prerelease: false
|
|
94
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
95
|
-
requirements:
|
|
96
|
-
- - ">="
|
|
97
|
-
- !ruby/object:Gem::Version
|
|
98
|
-
version: '0'
|
|
99
|
-
- !ruby/object:Gem::Dependency
|
|
100
|
-
name: mocha
|
|
101
|
-
requirement: !ruby/object:Gem::Requirement
|
|
102
|
-
requirements:
|
|
103
|
-
- - "~>"
|
|
104
|
-
- !ruby/object:Gem::Version
|
|
105
|
-
version: '1.2'
|
|
106
|
-
- - ">="
|
|
107
|
-
- !ruby/object:Gem::Version
|
|
108
|
-
version: 1.2.1
|
|
109
|
-
type: :development
|
|
110
|
-
prerelease: false
|
|
111
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
112
|
-
requirements:
|
|
113
|
-
- - "~>"
|
|
114
|
-
- !ruby/object:Gem::Version
|
|
115
|
-
version: '1.2'
|
|
116
|
-
- - ">="
|
|
117
|
-
- !ruby/object:Gem::Version
|
|
118
|
-
version: 1.2.1
|
|
119
85
|
description: This gem provides Azure Resource Manager as a compute resource for The
|
|
120
86
|
Foreman
|
|
121
87
|
email:
|
|
@@ -179,83 +145,45 @@ files:
|
|
|
179
145
|
- locale/Makefile
|
|
180
146
|
- locale/action_names.rb
|
|
181
147
|
- locale/ca/LC_MESSAGES/foreman_azure_rm.mo
|
|
182
|
-
- locale/ca/foreman_azure_rm.edit.po
|
|
183
148
|
- locale/ca/foreman_azure_rm.po
|
|
184
|
-
- locale/ca/foreman_azure_rm.po.time_stamp
|
|
185
149
|
- locale/cs_CZ/LC_MESSAGES/foreman_azure_rm.mo
|
|
186
|
-
- locale/cs_CZ/foreman_azure_rm.edit.po
|
|
187
150
|
- locale/cs_CZ/foreman_azure_rm.po
|
|
188
|
-
- locale/cs_CZ/foreman_azure_rm.po.time_stamp
|
|
189
151
|
- locale/de/LC_MESSAGES/foreman_azure_rm.mo
|
|
190
|
-
- locale/de/foreman_azure_rm.edit.po
|
|
191
152
|
- locale/de/foreman_azure_rm.po
|
|
192
|
-
- locale/de/foreman_azure_rm.po.time_stamp
|
|
193
153
|
- locale/en/LC_MESSAGES/foreman_azure_rm.mo
|
|
194
|
-
- locale/en/foreman_azure_rm.edit.po
|
|
195
154
|
- locale/en/foreman_azure_rm.po
|
|
196
|
-
- locale/en/foreman_azure_rm.po.time_stamp
|
|
197
155
|
- locale/en_GB/LC_MESSAGES/foreman_azure_rm.mo
|
|
198
|
-
- locale/en_GB/foreman_azure_rm.edit.po
|
|
199
156
|
- locale/en_GB/foreman_azure_rm.po
|
|
200
|
-
- locale/en_GB/foreman_azure_rm.po.time_stamp
|
|
201
157
|
- locale/es/LC_MESSAGES/foreman_azure_rm.mo
|
|
202
|
-
- locale/es/foreman_azure_rm.edit.po
|
|
203
158
|
- locale/es/foreman_azure_rm.po
|
|
204
|
-
- locale/es/foreman_azure_rm.po.time_stamp
|
|
205
159
|
- locale/foreman_azure_rm.pot
|
|
206
160
|
- locale/fr/LC_MESSAGES/foreman_azure_rm.mo
|
|
207
|
-
- locale/fr/foreman_azure_rm.edit.po
|
|
208
161
|
- locale/fr/foreman_azure_rm.po
|
|
209
|
-
- locale/fr/foreman_azure_rm.po.time_stamp
|
|
210
162
|
- locale/gemspec.rb
|
|
211
163
|
- locale/gl/LC_MESSAGES/foreman_azure_rm.mo
|
|
212
|
-
- locale/gl/foreman_azure_rm.edit.po
|
|
213
164
|
- locale/gl/foreman_azure_rm.po
|
|
214
|
-
- locale/gl/foreman_azure_rm.po.time_stamp
|
|
215
165
|
- locale/it/LC_MESSAGES/foreman_azure_rm.mo
|
|
216
|
-
- locale/it/foreman_azure_rm.edit.po
|
|
217
166
|
- locale/it/foreman_azure_rm.po
|
|
218
|
-
- locale/it/foreman_azure_rm.po.time_stamp
|
|
219
167
|
- locale/ja/LC_MESSAGES/foreman_azure_rm.mo
|
|
220
|
-
- locale/ja/foreman_azure_rm.edit.po
|
|
221
168
|
- locale/ja/foreman_azure_rm.po
|
|
222
|
-
- locale/ja/foreman_azure_rm.po.time_stamp
|
|
223
169
|
- locale/ka/LC_MESSAGES/foreman_azure_rm.mo
|
|
224
|
-
- locale/ka/foreman_azure_rm.edit.po
|
|
225
170
|
- locale/ka/foreman_azure_rm.po
|
|
226
|
-
- locale/ka/foreman_azure_rm.po.time_stamp
|
|
227
171
|
- locale/ko/LC_MESSAGES/foreman_azure_rm.mo
|
|
228
|
-
- locale/ko/foreman_azure_rm.edit.po
|
|
229
172
|
- locale/ko/foreman_azure_rm.po
|
|
230
|
-
- locale/ko/foreman_azure_rm.po.time_stamp
|
|
231
173
|
- locale/nl_NL/LC_MESSAGES/foreman_azure_rm.mo
|
|
232
|
-
- locale/nl_NL/foreman_azure_rm.edit.po
|
|
233
174
|
- locale/nl_NL/foreman_azure_rm.po
|
|
234
|
-
- locale/nl_NL/foreman_azure_rm.po.time_stamp
|
|
235
175
|
- locale/pl/LC_MESSAGES/foreman_azure_rm.mo
|
|
236
|
-
- locale/pl/foreman_azure_rm.edit.po
|
|
237
176
|
- locale/pl/foreman_azure_rm.po
|
|
238
|
-
- locale/pl/foreman_azure_rm.po.time_stamp
|
|
239
177
|
- locale/pt_BR/LC_MESSAGES/foreman_azure_rm.mo
|
|
240
|
-
- locale/pt_BR/foreman_azure_rm.edit.po
|
|
241
178
|
- locale/pt_BR/foreman_azure_rm.po
|
|
242
|
-
- locale/pt_BR/foreman_azure_rm.po.time_stamp
|
|
243
179
|
- locale/ru/LC_MESSAGES/foreman_azure_rm.mo
|
|
244
|
-
- locale/ru/foreman_azure_rm.edit.po
|
|
245
180
|
- locale/ru/foreman_azure_rm.po
|
|
246
|
-
- locale/ru/foreman_azure_rm.po.time_stamp
|
|
247
181
|
- locale/sv_SE/LC_MESSAGES/foreman_azure_rm.mo
|
|
248
|
-
- locale/sv_SE/foreman_azure_rm.edit.po
|
|
249
182
|
- locale/sv_SE/foreman_azure_rm.po
|
|
250
|
-
- locale/sv_SE/foreman_azure_rm.po.time_stamp
|
|
251
183
|
- locale/zh_CN/LC_MESSAGES/foreman_azure_rm.mo
|
|
252
|
-
- locale/zh_CN/foreman_azure_rm.edit.po
|
|
253
184
|
- locale/zh_CN/foreman_azure_rm.po
|
|
254
|
-
- locale/zh_CN/foreman_azure_rm.po.time_stamp
|
|
255
185
|
- locale/zh_TW/LC_MESSAGES/foreman_azure_rm.mo
|
|
256
|
-
- locale/zh_TW/foreman_azure_rm.edit.po
|
|
257
186
|
- locale/zh_TW/foreman_azure_rm.po
|
|
258
|
-
- locale/zh_TW/foreman_azure_rm.po.time_stamp
|
|
259
187
|
homepage: https://github.com/theforeman/foreman_azure_rm
|
|
260
188
|
licenses:
|
|
261
189
|
- GPL-3.0
|
|
@@ -275,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
275
203
|
- !ruby/object:Gem::Version
|
|
276
204
|
version: '0'
|
|
277
205
|
requirements: []
|
|
278
|
-
rubygems_version: 3.
|
|
206
|
+
rubygems_version: 3.5.11
|
|
279
207
|
signing_key:
|
|
280
208
|
specification_version: 4
|
|
281
209
|
summary: Azure Resource Manager as a compute resource for The Foreman
|
|
@@ -1,272 +0,0 @@
|
|
|
1
|
-
# SOME DESCRIPTIVE TITLE.
|
|
2
|
-
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
|
3
|
-
# This file is distributed under the same license as the foreman_azure_rm package.
|
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
5
|
-
#
|
|
6
|
-
# Translators:
|
|
7
|
-
# Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2020
|
|
8
|
-
#
|
|
9
|
-
msgid ""
|
|
10
|
-
msgstr ""
|
|
11
|
-
"Project-Id-Version: foreman_azure_rm 2.2.9\n"
|
|
12
|
-
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
|
14
|
-
"Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2020\n"
|
|
15
|
-
"Language-Team: Catalan (https://app.transifex.com/foreman/teams/114/ca/)\n"
|
|
16
|
-
"MIME-Version: 1.0\n"
|
|
17
|
-
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
|
-
"Content-Transfer-Encoding: 8bit\n"
|
|
19
|
-
"Language: ca\n"
|
|
20
|
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
21
|
-
|
|
22
|
-
#: ../app/controllers/foreman_azure_rm/concerns/compute_resources_controller_extensions.rb:10
|
|
23
|
-
msgid "Client ID for AzureRm"
|
|
24
|
-
msgstr ""
|
|
25
|
-
|
|
26
|
-
#: ../app/controllers/foreman_azure_rm/concerns/compute_resources_controller_extensions.rb:11
|
|
27
|
-
msgid "Client Secret for AzureRm"
|
|
28
|
-
msgstr ""
|
|
29
|
-
|
|
30
|
-
#: ../app/controllers/foreman_azure_rm/concerns/compute_resources_controller_extensions.rb:12
|
|
31
|
-
msgid "Subscription ID for AzureRm"
|
|
32
|
-
msgstr ""
|
|
33
|
-
|
|
34
|
-
#: ../app/controllers/foreman_azure_rm/concerns/compute_resources_controller_extensions.rb:13 ../app/views/compute_resources/form/_azurerm.html.erb:6
|
|
35
|
-
msgid "Cloud"
|
|
36
|
-
msgstr ""
|
|
37
|
-
|
|
38
|
-
#: ../app/controllers/foreman_azure_rm/concerns/hosts_controller_extensions.rb:11
|
|
39
|
-
msgid "The region you selected has no sizes associated with it"
|
|
40
|
-
msgstr ""
|
|
41
|
-
|
|
42
|
-
#: ../app/controllers/foreman_azure_rm/concerns/hosts_controller_extensions.rb:23
|
|
43
|
-
msgid "The selected region has no subnets"
|
|
44
|
-
msgstr ""
|
|
45
|
-
|
|
46
|
-
#: ../app/controllers/foreman_azure_rm/concerns/hosts_controller_extensions.rb:27
|
|
47
|
-
msgid "The selected image has no associated compute resource"
|
|
48
|
-
msgstr ""
|
|
49
|
-
|
|
50
|
-
#: ../app/helpers/azure_compute_resource_helper.rb:11
|
|
51
|
-
msgid "Azure Region"
|
|
52
|
-
msgstr ""
|
|
53
|
-
|
|
54
|
-
#: ../app/helpers/azure_compute_resource_helper.rb:11
|
|
55
|
-
msgid "Load Regions"
|
|
56
|
-
msgstr "Carrega les regions"
|
|
57
|
-
|
|
58
|
-
#: ../app/models/foreman_azure_rm/azure_rm.rb:67
|
|
59
|
-
msgid "is not valid, must be lowercase eg. 'eastus'. No special characters allowed."
|
|
60
|
-
msgstr ""
|
|
61
|
-
|
|
62
|
-
#: ../app/models/foreman_azure_rm/azure_rm.rb:73
|
|
63
|
-
msgid "is not valid. Valid choices are %s."
|
|
64
|
-
msgstr ""
|
|
65
|
-
|
|
66
|
-
#: ../app/models/foreman_azure_rm/azure_rm_compute.rb:154
|
|
67
|
-
msgid "%{vm_size} VM Size"
|
|
68
|
-
msgstr ""
|
|
69
|
-
|
|
70
|
-
#: ../app/views/compute_resources/form/_azurerm.html.erb:7
|
|
71
|
-
msgid "Client ID"
|
|
72
|
-
msgstr ""
|
|
73
|
-
|
|
74
|
-
#: ../app/views/compute_resources/form/_azurerm.html.erb:8
|
|
75
|
-
msgid "Client Secret"
|
|
76
|
-
msgstr ""
|
|
77
|
-
|
|
78
|
-
#: ../app/views/compute_resources/form/_azurerm.html.erb:9
|
|
79
|
-
msgid "Subscription ID"
|
|
80
|
-
msgstr "ID de subscripció"
|
|
81
|
-
|
|
82
|
-
#: ../app/views/compute_resources/form/_azurerm.html.erb:10
|
|
83
|
-
msgid "Tenant ID"
|
|
84
|
-
msgstr ""
|
|
85
|
-
|
|
86
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:91
|
|
87
|
-
msgid "Please select a Resource Group"
|
|
88
|
-
msgstr ""
|
|
89
|
-
|
|
90
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:94 ../app/views/compute_resources_vms/index/_azurerm.html.erb:5
|
|
91
|
-
msgid "Resource Group"
|
|
92
|
-
msgstr ""
|
|
93
|
-
|
|
94
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:97
|
|
95
|
-
msgid "Reload Images, Sizes, vNets"
|
|
96
|
-
msgstr ""
|
|
97
|
-
|
|
98
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:109
|
|
99
|
-
msgid "Please select a VM Size"
|
|
100
|
-
msgstr ""
|
|
101
|
-
|
|
102
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:111
|
|
103
|
-
msgid "VM Size"
|
|
104
|
-
msgstr ""
|
|
105
|
-
|
|
106
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:120
|
|
107
|
-
msgid "Platform"
|
|
108
|
-
msgstr ""
|
|
109
|
-
|
|
110
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:127
|
|
111
|
-
msgid "Username"
|
|
112
|
-
msgstr "Nom d'usuari"
|
|
113
|
-
|
|
114
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:134
|
|
115
|
-
msgid "Password"
|
|
116
|
-
msgstr "Contrasenya"
|
|
117
|
-
|
|
118
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:143
|
|
119
|
-
msgid "SSH Key"
|
|
120
|
-
msgstr ""
|
|
121
|
-
|
|
122
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:149
|
|
123
|
-
msgid "Premium OS Disk"
|
|
124
|
-
msgstr ""
|
|
125
|
-
|
|
126
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:158
|
|
127
|
-
msgid "Override OS Disk Size (GB)"
|
|
128
|
-
msgstr ""
|
|
129
|
-
|
|
130
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:159
|
|
131
|
-
msgid "Leave empty to use default image size"
|
|
132
|
-
msgstr ""
|
|
133
|
-
|
|
134
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:167 ../app/views/compute_resources_vms/form/azurerm/_volume.html.erb:14
|
|
135
|
-
msgid "Azure's Default"
|
|
136
|
-
msgstr ""
|
|
137
|
-
|
|
138
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:169
|
|
139
|
-
msgid "OS Disk Caching"
|
|
140
|
-
msgstr ""
|
|
141
|
-
|
|
142
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:170
|
|
143
|
-
msgid "Default ReadWrite"
|
|
144
|
-
msgstr ""
|
|
145
|
-
|
|
146
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:177
|
|
147
|
-
msgid "Custom Script Command"
|
|
148
|
-
msgstr ""
|
|
149
|
-
|
|
150
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:178
|
|
151
|
-
msgid "To perform commands as root, prefix it with 'sudo'"
|
|
152
|
-
msgstr ""
|
|
153
|
-
|
|
154
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:184
|
|
155
|
-
msgid "Comma seperated file URIs"
|
|
156
|
-
msgstr ""
|
|
157
|
-
|
|
158
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:190
|
|
159
|
-
msgid "Azure Tags"
|
|
160
|
-
msgstr ""
|
|
161
|
-
|
|
162
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:191
|
|
163
|
-
msgid "Comma seperated list of name=value pairs for tags on this VM in Azure"
|
|
164
|
-
msgstr ""
|
|
165
|
-
|
|
166
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:197
|
|
167
|
-
msgid "NVIDIA driver / CUDA"
|
|
168
|
-
msgstr ""
|
|
169
|
-
|
|
170
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:199
|
|
171
|
-
msgid "Deploy NVIDIA GPU driver and CUDA (Azure Extension Microsoft.HpcCompute/NvidiaGpuDriver{Linux,Windows}/1.3)"
|
|
172
|
-
msgstr ""
|
|
173
|
-
|
|
174
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:207
|
|
175
|
-
msgid "Please select an image"
|
|
176
|
-
msgstr "Si us plau, seleccioneu una imatge"
|
|
177
|
-
|
|
178
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_base.html.erb:210
|
|
179
|
-
msgid "Image"
|
|
180
|
-
msgstr "Imatge"
|
|
181
|
-
|
|
182
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_network.html.erb:5
|
|
183
|
-
msgid "Select"
|
|
184
|
-
msgstr "Selecciona"
|
|
185
|
-
|
|
186
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_network.html.erb:7
|
|
187
|
-
msgid "Azure Subnet"
|
|
188
|
-
msgstr ""
|
|
189
|
-
|
|
190
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_network.html.erb:18
|
|
191
|
-
msgid "Public IP"
|
|
192
|
-
msgstr ""
|
|
193
|
-
|
|
194
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_network.html.erb:25
|
|
195
|
-
msgid "Static Private IP"
|
|
196
|
-
msgstr ""
|
|
197
|
-
|
|
198
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_volume.html.erb:4
|
|
199
|
-
msgid "Size (GB)"
|
|
200
|
-
msgstr "Mida (GB)"
|
|
201
|
-
|
|
202
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_volume.html.erb:8
|
|
203
|
-
msgid "Additional number of disks can be added based on VM Size. For more details, please refer to Microsoft Azure's documentation"
|
|
204
|
-
msgstr ""
|
|
205
|
-
|
|
206
|
-
#: ../app/views/compute_resources_vms/form/azurerm/_volume.html.erb:17
|
|
207
|
-
msgid "Data Disk Caching"
|
|
208
|
-
msgstr ""
|
|
209
|
-
|
|
210
|
-
#: ../app/views/compute_resources_vms/index/_azurerm.html.erb:3
|
|
211
|
-
msgid "Name"
|
|
212
|
-
msgstr "Nom"
|
|
213
|
-
|
|
214
|
-
#: ../app/views/compute_resources_vms/index/_azurerm.html.erb:4
|
|
215
|
-
msgid "Size"
|
|
216
|
-
msgstr "Mida"
|
|
217
|
-
|
|
218
|
-
#: ../app/views/compute_resources_vms/index/_azurerm.html.erb:6
|
|
219
|
-
msgid "Region"
|
|
220
|
-
msgstr "Regió"
|
|
221
|
-
|
|
222
|
-
#: ../app/views/compute_resources_vms/index/_azurerm.html.erb:7
|
|
223
|
-
msgid "State"
|
|
224
|
-
msgstr "Estat"
|
|
225
|
-
|
|
226
|
-
#: ../app/views/compute_resources_vms/index/_azurerm.html.erb:8
|
|
227
|
-
msgid "Actions"
|
|
228
|
-
msgstr "Accions"
|
|
229
|
-
|
|
230
|
-
#: ../app/views/compute_resources_vms/show/_azurerm.html.erb:5
|
|
231
|
-
msgid "Properties"
|
|
232
|
-
msgstr "Propietats"
|
|
233
|
-
|
|
234
|
-
#: ../app/views/images/form/_azurerm.html.erb:2
|
|
235
|
-
msgid "The user that will be used to SSH into the VM for completion"
|
|
236
|
-
msgstr ""
|
|
237
|
-
|
|
238
|
-
#: ../app/views/images/form/_azurerm.html.erb:4
|
|
239
|
-
msgid "Password to authenticate with - used for SSH finish step."
|
|
240
|
-
msgstr ""
|
|
241
|
-
|
|
242
|
-
#: ../app/views/images/form/_azurerm.html.erb:5
|
|
243
|
-
msgid "Azure Image Name"
|
|
244
|
-
msgstr ""
|
|
245
|
-
|
|
246
|
-
#: ../app/views/images/form/_azurerm.html.erb:5
|
|
247
|
-
msgid "For custom or shared gallery image, use prefix 'custom://' or 'gallery://'. For public and RHEL-byos images, prefix the uuid with 'marketplace://'. (e.g. 'marketplace://OpenLogic:CentOS:7.5:latest' or 'custom://image-name')"
|
|
248
|
-
msgstr ""
|
|
249
|
-
|
|
250
|
-
#: ../app/views/images/form/_azurerm.html.erb:6
|
|
251
|
-
msgid "Does this image support user data input?"
|
|
252
|
-
msgstr "La imatge admet l'entrada de dades d'usuari?"
|
|
253
|
-
|
|
254
|
-
#: action_names.rb:2
|
|
255
|
-
msgid "Action with sub plans"
|
|
256
|
-
msgstr ""
|
|
257
|
-
|
|
258
|
-
#: action_names.rb:3
|
|
259
|
-
msgid "Import facts"
|
|
260
|
-
msgstr ""
|
|
261
|
-
|
|
262
|
-
#: action_names.rb:4
|
|
263
|
-
msgid "Import Puppet classes"
|
|
264
|
-
msgstr ""
|
|
265
|
-
|
|
266
|
-
#: action_names.rb:5
|
|
267
|
-
msgid "Remote action:"
|
|
268
|
-
msgstr ""
|
|
269
|
-
|
|
270
|
-
#: gemspec.rb:2
|
|
271
|
-
msgid "Azure Resource Manager as a compute resource for Foreman"
|
|
272
|
-
msgstr ""
|
|
File without changes
|