foreman_azure_rm 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +17 -15
- data/app/models/concerns/foreman_azure_rm/vm_extensions/managed_vm.rb +16 -0
- data/app/views/compute_resources_vms/index/_azurerm.html.erb +12 -12
- data/app/views/images/form/_azurerm.html.erb +2 -2
- data/lib/foreman_azure_rm/engine.rb +1 -1
- data/lib/foreman_azure_rm/version.rb +1 -1
- data/locale/action_names.rb +5 -0
- data/locale/ca/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ca/foreman_azure_rm.po +185 -0
- data/locale/cs_CZ/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/cs_CZ/foreman_azure_rm.po +189 -0
- data/locale/de/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/de/foreman_azure_rm.po +191 -0
- data/locale/en/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/en/foreman_azure_rm.po +17 -5
- data/locale/en_GB/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/en_GB/foreman_azure_rm.po +187 -0
- data/locale/es/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/es/foreman_azure_rm.po +190 -0
- data/locale/foreman_azure_rm.pot +27 -13
- data/locale/fr/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/fr/foreman_azure_rm.po +187 -0
- data/locale/gl/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/gl/foreman_azure_rm.po +185 -0
- data/locale/it/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/it/foreman_azure_rm.po +187 -0
- data/locale/ja/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ja/foreman_azure_rm.po +187 -0
- data/locale/ko/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ko/foreman_azure_rm.po +186 -0
- data/locale/nl_NL/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/nl_NL/foreman_azure_rm.po +187 -0
- data/locale/pl/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/pl/foreman_azure_rm.po +188 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/pt_BR/foreman_azure_rm.po +190 -0
- data/locale/ru/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/ru/foreman_azure_rm.po +190 -0
- data/locale/sv_SE/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/sv_SE/foreman_azure_rm.po +187 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/zh_CN/foreman_azure_rm.po +188 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_azure_rm.mo +0 -0
- data/locale/zh_TW/foreman_azure_rm.po +187 -0
- metadata +38 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc75ad1df578bcc16ca37a67e323b1ff763ec6e6149db99a1056ae88c9248c5d
|
4
|
+
data.tar.gz: 3d8127cce9836f8f23c95947e5497b2c8f3c4d3fc10a7ad025c0d09fa805a06a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a213f22eb2b08b07fe28b803a33136a4d3a977eb46a4b95bf926f48189137efef13aacf37a4d81cf2f47c6d710e5ac8a73d5f498431d7a06d3bf6e4d7567380f
|
7
|
+
data.tar.gz: c361b566af6b568899c60942826a6db92e973da00ac4d6a8641a2c3592090ceaf87fe6a57414b3f260f486b70ebc84c98966da1802477987f816baa19c99a4c1
|
data/README.md
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
```foreman_azure_rm``` adds [Microsoft Azure Resource Manager](http://azure.com/) as a compute resource for The Foreman
|
5
5
|
|
6
6
|
* Website: [TheForeman.org](http://theforeman.org)
|
7
|
+
* ForemanAzureRm: [Plugin manual](https://theforeman.org/plugins/foreman_azure)
|
7
8
|
* Support: [Foreman support](http://theforeman.org/support.html)
|
8
9
|
|
9
10
|
## Installation
|
@@ -12,25 +13,25 @@
|
|
12
13
|
|
13
14
|
Add the following to bundler.d/Gemfile.local.rb in your Foreman installation directory (/usr/share/foreman by default)
|
14
15
|
|
15
|
-
```
|
16
|
+
```console
|
16
17
|
$ gem 'foreman_azure_rm'
|
17
18
|
```
|
18
19
|
|
19
20
|
Or simply:
|
20
21
|
|
21
|
-
```
|
22
|
+
```console
|
22
23
|
$ echo "gem 'foreman_azure_rm'" > /usr/share/foreman/bundler.d/Gemfile.local.rb
|
23
24
|
```
|
24
25
|
|
25
26
|
Then run `bundle install` from the same directory
|
26
27
|
|
27
28
|
### Package
|
28
|
-
```
|
29
|
+
```console
|
29
30
|
# yum install tfm-rubygem-foreman_azure_rm
|
30
31
|
```
|
31
32
|
|
32
33
|
### Foreman Installer
|
33
|
-
```
|
34
|
+
```console
|
34
35
|
# foreman-installer --enable-foreman-plugin-azure
|
35
36
|
```
|
36
37
|
|
@@ -44,7 +45,7 @@ git clone https://github.com/theforeman/foreman_azure_rm.git
|
|
44
45
|
Add the following to bundler.d/Gemfile.local.rb in your Foreman development directory
|
45
46
|
|
46
47
|
```ruby
|
47
|
-
|
48
|
+
gem 'foreman_azure_rm', :path => 'path to foreman_azure_rm directory'
|
48
49
|
```
|
49
50
|
|
50
51
|
Then run `bundle install` from the same directory
|
@@ -54,10 +55,14 @@ Then run `bundle install` from the same directory
|
|
54
55
|
* VM creation
|
55
56
|
* Provisions using Finish and User data templates from Foreman
|
56
57
|
* Supports cloud-config provisioning
|
57
|
-
* Currently supports single NIC
|
58
|
-
* Currently supports single default OS Disk
|
59
58
|
* Currently supports only provisioning of Linux platforms
|
60
59
|
* Provisioning using [Public Images](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/cli-ps-findimage)
|
60
|
+
* Provision using custom images
|
61
|
+
* Provision using shared image galleries
|
62
|
+
* Provision using RHEL byos images
|
63
|
+
* Multiple NICs support
|
64
|
+
* Support to add multiple data disks/volumes (standard or premium)
|
65
|
+
* VM Extension with Custom Script and File URIs support
|
61
66
|
* Static or dynamic addresses on a per NIC basis
|
62
67
|
* Limited extension support
|
63
68
|
* Microsoft's custom script extension
|
@@ -71,21 +76,18 @@ Choose the **Azure Resource Manager provider**, and fill in all the fields. You
|
|
71
76
|
That's it. You're now ready to create and manage Azure resources in your new Azure Resource Manager compute resource. You should see something like this in the Compute Resource page:
|
72
77
|
|
73
78
|
|
74
|
-
![](https://i.imgur.com/
|
79
|
+
![](https://i.imgur.com/vsamP4G.png)
|
75
80
|
|
76
81
|
|
77
|
-
![](https://i.imgur.com/
|
82
|
+
![](https://i.imgur.com/Ag9tH55.png)
|
78
83
|
|
79
84
|
|
80
|
-
![](https://i.imgur.com/
|
85
|
+
![](https://i.imgur.com/fNjlFci.png)
|
81
86
|
|
82
87
|
|
83
88
|
## Planned Features
|
84
|
-
*
|
85
|
-
* Support
|
86
|
-
* Provision using custom images
|
87
|
-
* Provision using shared image galleries
|
88
|
-
* Improved extension support
|
89
|
+
* Azure Gov Cloud Support
|
90
|
+
* Support for http_proxy
|
89
91
|
|
90
92
|
## Known Limitations
|
91
93
|
* Please note that currently username is expected to be the same on both Virtual Machine tab for Host creation and during Image creation for Compute Resource. The password field for Image creation is optional.
|
@@ -59,6 +59,21 @@ module ForemanAzureRm
|
|
59
59
|
end
|
60
60
|
end
|
61
61
|
|
62
|
+
def marketplace_image_plan(image)
|
63
|
+
image_type, image_id = image.split('://')
|
64
|
+
return nil unless image_type == 'marketplace' && image_id.include?('byos')
|
65
|
+
urn = image_id.split(':')
|
66
|
+
publisher = urn[0]
|
67
|
+
offer = urn[1]
|
68
|
+
sku = urn[2]
|
69
|
+
version = urn[3]
|
70
|
+
image_plan = ComputeModels::PurchasePlan.new
|
71
|
+
image_plan.publisher = publisher.downcase
|
72
|
+
image_plan.name = sku.downcase
|
73
|
+
image_plan.product = offer.downcase
|
74
|
+
image_plan
|
75
|
+
end
|
76
|
+
|
62
77
|
def marketplace_image_reference(publisher, offer, sku, version)
|
63
78
|
image_reference = ComputeModels::ImageReference.new
|
64
79
|
image_reference.publisher = publisher
|
@@ -209,6 +224,7 @@ module ForemanAzureRm
|
|
209
224
|
|
210
225
|
def create_managed_virtual_machine(vm_hash)
|
211
226
|
vm_params = initialize_vm(vm_hash)
|
227
|
+
vm_params.plan = marketplace_image_plan(vm_hash[:image_id])
|
212
228
|
vm_params.network_profile = define_network_profile(vm_hash[:network_interface_card_ids])
|
213
229
|
vm_params.storage_profile.image_reference = define_image(vm_hash[:resource_group], vm_hash[:image_id])
|
214
230
|
vm_params.storage_profile.data_disks = define_data_disks(vm_hash[:name], vm_hash[:data_disks])
|
@@ -1,14 +1,14 @@
|
|
1
|
-
<
|
2
|
-
<
|
3
|
-
<
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
1
|
+
<thead>
|
2
|
+
<tr>
|
3
|
+
<th><%= _('Name') %></th>
|
4
|
+
<th><%= _('Size') %></th>
|
5
|
+
<th><%= _('Resource Group') %></th>
|
6
|
+
<th><%= _('Region') %></th>
|
7
|
+
<th><%= _('State') %></th>
|
8
|
+
<th><%= _('Actions') %></th>
|
9
|
+
</tr>
|
10
|
+
</thead>
|
11
|
+
<tbody>
|
12
12
|
<% @vms.each do |vm| %>
|
13
13
|
<tr>
|
14
14
|
<td><%= link_to_if_authorized vm.name, hash_for_compute_resource_vm_path(:compute_resource_id => @compute_resource, :id => vm.identity).merge(:auth_object => @compute_resource) %></td>
|
@@ -27,4 +27,4 @@
|
|
27
27
|
</td>
|
28
28
|
</tr>
|
29
29
|
<% end %>
|
30
|
-
</
|
30
|
+
</tbody>
|
@@ -2,5 +2,5 @@
|
|
2
2
|
:help_inline => _("The user that will be used to SSH into the VM for completion")
|
3
3
|
%>
|
4
4
|
<%= password_f f, :password, :keep_value => true, :help_inline => _("Password to authenticate with - used for SSH finish step.") %>
|
5
|
-
<%= image_field(f, :label => _("Azure Image Name"), :help_inline => _("For custom or shared gallery image prefix
|
6
|
-
<%= checkbox_f f, :user_data, :help_inline => _("Does this image support user data input?") %>
|
5
|
+
<%= image_field(f, :label => _("Azure Image Name"), :help_inline => _("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')")) %>
|
6
|
+
<%= checkbox_f f, :user_data, :help_inline => _("Does this image support user data input?") %>
|
@@ -42,7 +42,7 @@ module ForemanAzureRm
|
|
42
42
|
require 'azure_mgmt_subscriptions'
|
43
43
|
|
44
44
|
# Add format validation for azure images
|
45
|
-
::Image.validates :uuid, format: { with: /\A((marketplace|custom|gallery):\/\/)[^:]+(:[^:]+:[^:]+:[^:]+)?\z/,
|
45
|
+
::Image.validates :uuid, uniqueness: { scope: :compute_resource_id, case_sensitive: false }, format: { with: /\A((marketplace|custom|gallery):\/\/)[^:]+(:[^:]+:[^:]+:[^:]+)?\z/,
|
46
46
|
message: "Incorrect UUID format" }, if: -> (image){ image.compute_resource.is_a? ForemanAzureRm::AzureRm }
|
47
47
|
|
48
48
|
# Use excon as default so that HTTP Proxy settings of foreman works
|
Binary file
|
@@ -0,0 +1,185 @@
|
|
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 Gelonch <rbuj@fedoraproject.org>, 2020
|
8
|
+
#
|
9
|
+
msgid ""
|
10
|
+
msgstr ""
|
11
|
+
"Project-Id-Version: foreman_azure_rm 2.0.8\n"
|
12
|
+
"Report-Msgid-Bugs-To: \n"
|
13
|
+
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
14
|
+
"Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2020\n"
|
15
|
+
"Language-Team: Catalan (https://www.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
|
+
msgid "%{vm_size} VM Size"
|
23
|
+
msgstr ""
|
24
|
+
|
25
|
+
msgid "Action with sub plans"
|
26
|
+
msgstr ""
|
27
|
+
|
28
|
+
msgid "Actions"
|
29
|
+
msgstr "Accions"
|
30
|
+
|
31
|
+
msgid "Additional number of disks can be added based on VM Size. For more details, please refer to Microsoft Azure's documentation"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
msgid "Azure Region"
|
35
|
+
msgstr ""
|
36
|
+
|
37
|
+
msgid "Azure Resource Manager as a compute resource for Foreman"
|
38
|
+
msgstr ""
|
39
|
+
|
40
|
+
msgid "Azure Subnet"
|
41
|
+
msgstr ""
|
42
|
+
|
43
|
+
msgid "Azure's Default"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
msgid "Azure's default"
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
msgid "Client ID"
|
50
|
+
msgstr ""
|
51
|
+
|
52
|
+
msgid "Client ID for AzureRm"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
msgid "Client Secret"
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
msgid "Client Secret for AzureRm"
|
59
|
+
msgstr ""
|
60
|
+
|
61
|
+
msgid "Comma seperated file URIs"
|
62
|
+
msgstr ""
|
63
|
+
|
64
|
+
msgid "Custom Script Command"
|
65
|
+
msgstr ""
|
66
|
+
|
67
|
+
msgid "Data Disk Caching"
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
msgid "Default ReadWrite"
|
71
|
+
msgstr ""
|
72
|
+
|
73
|
+
msgid "Does this image support user data input?"
|
74
|
+
msgstr "La imatge admet l'entrada de dades d'usuari?"
|
75
|
+
|
76
|
+
msgid "Image"
|
77
|
+
msgstr "Imatge"
|
78
|
+
|
79
|
+
msgid "Import Puppet classes"
|
80
|
+
msgstr ""
|
81
|
+
|
82
|
+
msgid "Import facts"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
msgid "Load Regions"
|
86
|
+
msgstr ""
|
87
|
+
|
88
|
+
msgid "Marketplace Image URN"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Marketplace URN (e.g. OpenLogic:CentOS:7.5:latest)"
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
msgid "Name"
|
95
|
+
msgstr "Nom"
|
96
|
+
|
97
|
+
msgid "OS Disk Caching"
|
98
|
+
msgstr ""
|
99
|
+
|
100
|
+
msgid "Password"
|
101
|
+
msgstr "Contrasenya"
|
102
|
+
|
103
|
+
msgid "Password to authenticate with - used for SSH finish step."
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
msgid "Platform"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
msgid "Please select a Resource Group"
|
110
|
+
msgstr ""
|
111
|
+
|
112
|
+
msgid "Please select a VM Size"
|
113
|
+
msgstr ""
|
114
|
+
|
115
|
+
msgid "Please select an image"
|
116
|
+
msgstr "Si us plau, seleccioneu una imatge"
|
117
|
+
|
118
|
+
msgid "Premium OS Disk"
|
119
|
+
msgstr ""
|
120
|
+
|
121
|
+
msgid "Properties"
|
122
|
+
msgstr "Propietats"
|
123
|
+
|
124
|
+
msgid "Public IP"
|
125
|
+
msgstr ""
|
126
|
+
|
127
|
+
msgid "Region"
|
128
|
+
msgstr "Regió"
|
129
|
+
|
130
|
+
msgid "Reload Images, Sizes, vNets"
|
131
|
+
msgstr ""
|
132
|
+
|
133
|
+
msgid "Remote action:"
|
134
|
+
msgstr ""
|
135
|
+
|
136
|
+
msgid "Resource Group"
|
137
|
+
msgstr ""
|
138
|
+
|
139
|
+
msgid "SSH Key"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
msgid "Select"
|
143
|
+
msgstr "Selecciona"
|
144
|
+
|
145
|
+
msgid "Size"
|
146
|
+
msgstr "Mida"
|
147
|
+
|
148
|
+
msgid "Size (GB)"
|
149
|
+
msgstr "Mida (GB)"
|
150
|
+
|
151
|
+
msgid "State"
|
152
|
+
msgstr "Estat"
|
153
|
+
|
154
|
+
msgid "Static Private IP"
|
155
|
+
msgstr ""
|
156
|
+
|
157
|
+
msgid "Subscription ID"
|
158
|
+
msgstr "ID de subscripció"
|
159
|
+
|
160
|
+
msgid "Subscription ID for AzureRm"
|
161
|
+
msgstr ""
|
162
|
+
|
163
|
+
msgid "Tenant ID"
|
164
|
+
msgstr ""
|
165
|
+
|
166
|
+
msgid "The region you selected has no sizes associated with it"
|
167
|
+
msgstr ""
|
168
|
+
|
169
|
+
msgid "The selected image has no associated compute resource"
|
170
|
+
msgstr ""
|
171
|
+
|
172
|
+
msgid "The selected region has no subnets"
|
173
|
+
msgstr ""
|
174
|
+
|
175
|
+
msgid "The user that will be used to SSH into the VM for completion"
|
176
|
+
msgstr ""
|
177
|
+
|
178
|
+
msgid "To perform commands as root, prefix it with 'sudo'"
|
179
|
+
msgstr ""
|
180
|
+
|
181
|
+
msgid "Username"
|
182
|
+
msgstr "Nom d'usuari"
|
183
|
+
|
184
|
+
msgid "VM Size"
|
185
|
+
msgstr ""
|
Binary file
|
@@ -0,0 +1,189 @@
|
|
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
|
+
# Lukáš Zapletal, 2020
|
8
|
+
# Pavel Borecki <pavel.borecki@gmail.com>, 2020
|
9
|
+
# mhulan <mhulan@redhat.com>, 2020
|
10
|
+
#
|
11
|
+
msgid ""
|
12
|
+
msgstr ""
|
13
|
+
"Project-Id-Version: foreman_azure_rm 2.0.8\n"
|
14
|
+
"Report-Msgid-Bugs-To: \n"
|
15
|
+
"PO-Revision-Date: 2020-04-21 13:58+0000\n"
|
16
|
+
"Last-Translator: mhulan <mhulan@redhat.com>, 2020\n"
|
17
|
+
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/foreman/teams"
|
18
|
+
"/114/cs_CZ/)\n"
|
19
|
+
"MIME-Version: 1.0\n"
|
20
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
21
|
+
"Content-Transfer-Encoding: 8bit\n"
|
22
|
+
"Language: cs_CZ\n"
|
23
|
+
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= "
|
24
|
+
"4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
25
|
+
|
26
|
+
msgid "%{vm_size} VM Size"
|
27
|
+
msgstr ""
|
28
|
+
|
29
|
+
msgid "Action with sub plans"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
msgid "Actions"
|
33
|
+
msgstr "Akce"
|
34
|
+
|
35
|
+
msgid "Additional number of disks can be added based on VM Size. For more details, please refer to Microsoft Azure's documentation"
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
msgid "Azure Region"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
msgid "Azure Resource Manager as a compute resource for Foreman"
|
42
|
+
msgstr ""
|
43
|
+
|
44
|
+
msgid "Azure Subnet"
|
45
|
+
msgstr ""
|
46
|
+
|
47
|
+
msgid "Azure's Default"
|
48
|
+
msgstr ""
|
49
|
+
|
50
|
+
msgid "Azure's default"
|
51
|
+
msgstr ""
|
52
|
+
|
53
|
+
msgid "Client ID"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
msgid "Client ID for AzureRm"
|
57
|
+
msgstr ""
|
58
|
+
|
59
|
+
msgid "Client Secret"
|
60
|
+
msgstr ""
|
61
|
+
|
62
|
+
msgid "Client Secret for AzureRm"
|
63
|
+
msgstr ""
|
64
|
+
|
65
|
+
msgid "Comma seperated file URIs"
|
66
|
+
msgstr ""
|
67
|
+
|
68
|
+
msgid "Custom Script Command"
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
msgid "Data Disk Caching"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
msgid "Default ReadWrite"
|
75
|
+
msgstr ""
|
76
|
+
|
77
|
+
msgid "Does this image support user data input?"
|
78
|
+
msgstr "Podporuje tento obraz vstup dat od uživatele?"
|
79
|
+
|
80
|
+
msgid "Image"
|
81
|
+
msgstr "Obraz"
|
82
|
+
|
83
|
+
msgid "Import Puppet classes"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
msgid "Import facts"
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
msgid "Load Regions"
|
90
|
+
msgstr ""
|
91
|
+
|
92
|
+
msgid "Marketplace Image URN"
|
93
|
+
msgstr ""
|
94
|
+
|
95
|
+
msgid "Marketplace URN (e.g. OpenLogic:CentOS:7.5:latest)"
|
96
|
+
msgstr ""
|
97
|
+
|
98
|
+
msgid "Name"
|
99
|
+
msgstr "Název"
|
100
|
+
|
101
|
+
msgid "OS Disk Caching"
|
102
|
+
msgstr ""
|
103
|
+
|
104
|
+
msgid "Password"
|
105
|
+
msgstr "Heslo"
|
106
|
+
|
107
|
+
msgid "Password to authenticate with - used for SSH finish step."
|
108
|
+
msgstr "Heslo které použít pro ověření se – použito pro krok dokončení po SSH."
|
109
|
+
|
110
|
+
msgid "Platform"
|
111
|
+
msgstr ""
|
112
|
+
|
113
|
+
msgid "Please select a Resource Group"
|
114
|
+
msgstr ""
|
115
|
+
|
116
|
+
msgid "Please select a VM Size"
|
117
|
+
msgstr ""
|
118
|
+
|
119
|
+
msgid "Please select an image"
|
120
|
+
msgstr "Vyberte obraz"
|
121
|
+
|
122
|
+
msgid "Premium OS Disk"
|
123
|
+
msgstr ""
|
124
|
+
|
125
|
+
msgid "Properties"
|
126
|
+
msgstr "Vlastnosti"
|
127
|
+
|
128
|
+
msgid "Public IP"
|
129
|
+
msgstr ""
|
130
|
+
|
131
|
+
msgid "Region"
|
132
|
+
msgstr "Oblast"
|
133
|
+
|
134
|
+
msgid "Reload Images, Sizes, vNets"
|
135
|
+
msgstr ""
|
136
|
+
|
137
|
+
msgid "Remote action:"
|
138
|
+
msgstr ""
|
139
|
+
|
140
|
+
msgid "Resource Group"
|
141
|
+
msgstr ""
|
142
|
+
|
143
|
+
msgid "SSH Key"
|
144
|
+
msgstr ""
|
145
|
+
|
146
|
+
msgid "Select"
|
147
|
+
msgstr "Vybrat"
|
148
|
+
|
149
|
+
msgid "Size"
|
150
|
+
msgstr "Velikost"
|
151
|
+
|
152
|
+
msgid "Size (GB)"
|
153
|
+
msgstr "Velikost (GB)"
|
154
|
+
|
155
|
+
msgid "State"
|
156
|
+
msgstr "Stav"
|
157
|
+
|
158
|
+
msgid "Static Private IP"
|
159
|
+
msgstr ""
|
160
|
+
|
161
|
+
msgid "Subscription ID"
|
162
|
+
msgstr "Identifikátor předplatného"
|
163
|
+
|
164
|
+
msgid "Subscription ID for AzureRm"
|
165
|
+
msgstr ""
|
166
|
+
|
167
|
+
msgid "Tenant ID"
|
168
|
+
msgstr ""
|
169
|
+
|
170
|
+
msgid "The region you selected has no sizes associated with it"
|
171
|
+
msgstr ""
|
172
|
+
|
173
|
+
msgid "The selected image has no associated compute resource"
|
174
|
+
msgstr ""
|
175
|
+
|
176
|
+
msgid "The selected region has no subnets"
|
177
|
+
msgstr ""
|
178
|
+
|
179
|
+
msgid "The user that will be used to SSH into the VM for completion"
|
180
|
+
msgstr ""
|
181
|
+
|
182
|
+
msgid "To perform commands as root, prefix it with 'sudo'"
|
183
|
+
msgstr ""
|
184
|
+
|
185
|
+
msgid "Username"
|
186
|
+
msgstr "Uživatelské jméno"
|
187
|
+
|
188
|
+
msgid "VM Size"
|
189
|
+
msgstr ""
|