foreman_docker 1.3.1 → 1.4.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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/containers_controller.rb +2 -2
  3. data/app/controllers/containers/steps_controller.rb +9 -4
  4. data/app/controllers/image_search_controller.rb +9 -1
  5. data/app/helpers/containers_helper.rb +0 -8
  6. data/app/models/container.rb +2 -1
  7. data/app/models/docker_container_wizard_states/configuration.rb +0 -1
  8. data/app/models/service/containers.rb +41 -19
  9. data/app/services/foreman_docker/utility.rb +20 -0
  10. data/app/views/compute_resources/form/_docker.html.erb +2 -2
  11. data/app/views/containers/show.html.erb +5 -1
  12. data/app/views/containers/steps/environment.html.erb +10 -1
  13. data/app/views/image_search/_repository_search_results.html.erb +0 -1
  14. data/lib/foreman_docker/engine.rb +0 -1
  15. data/lib/foreman_docker/version.rb +1 -1
  16. data/locale/de/foreman_docker.po +456 -0
  17. data/locale/es/foreman_docker.po +456 -0
  18. data/locale/foreman_docker.pot +437 -0
  19. data/locale/fr/foreman_docker.po +462 -0
  20. data/locale/it/foreman_docker.po +459 -0
  21. data/locale/ja/foreman_docker.po +446 -0
  22. data/locale/ko/foreman_docker.po +443 -0
  23. data/locale/pt_BR/foreman_docker.po +453 -0
  24. data/locale/ru/foreman_docker.po +449 -0
  25. data/locale/zanata.xml +19 -0
  26. data/locale/zh_CN/foreman_docker.po +441 -0
  27. data/locale/zh_TW/foreman_docker.po +442 -0
  28. data/test/functionals/containers_steps_controller_test.rb +1 -0
  29. data/test/functionals/image_search_controller_test.rb +34 -0
  30. data/test/integration/container_steps_test.rb +2 -2
  31. data/test/units/utility_service_test.rb +27 -0
  32. metadata +17 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c784dc294cd5077914df884556b05f67e2b88ad8
4
- data.tar.gz: 430b217d8cad346f0de7264131ddac0c1232d4fe
3
+ metadata.gz: f4f316fd63bc2efe6e8b31ada07a8cdd3a27bab1
4
+ data.tar.gz: 0cfdacc3abca34698986ea6e76bf1a08251161f9
5
5
  SHA512:
6
- metadata.gz: 0c4ca4fa9c5c8890d846ed046d528dbbe305afb8f305eb70ce43bf5c04b9e3c94908be43f61f7d17e0879bdb73fe1e28c1fd591800c6458f2bdf22724be480c3
7
- data.tar.gz: 93f5f49df7e8bcad6d8b03f87c2492df9febfcc05e167591bc96a6bdef79256a5943f8007c789fd939484549bb127708786816752fa69237817f4d2b0b77dc68
6
+ metadata.gz: da6153a299ed600540eedf20f943fb27b5f9f609b241437fee420bb945d7e3e966698e18cbda8fb1233608306b8c2271bace30dac2693c14421e8acdcc27625d
7
+ data.tar.gz: 4eb3046189bee5faa85d0c78cdf5e7942462b7fa92417b49cea620deab5935db0d51c82a86199d2f236950e05a2f04740b8698c9420e68110014b7e68587a413
@@ -37,7 +37,7 @@ module Api
37
37
 
38
38
  def_param_group :container do
39
39
  param :container, Hash, :required => true, :action_aware => true do
40
- param :name, String, :required => true
40
+ param :name, String
41
41
  param_group :taxonomies, ::Api::V2::BaseController
42
42
  param :compute_resource_id, :identifier, :required => true
43
43
  param :registry_id, :identifier, :desc => N_('Registry this container will have to
@@ -52,7 +52,7 @@ module Api
52
52
  param :command, String, :required => true
53
53
  param :memory, String
54
54
  param :cpu_shares, :number
55
- param :cpu_sets, String
55
+ param :cpu_set, String
56
56
  param :environment_variables, Hash
57
57
  param :attach_stdout, :bool
58
58
  param :attach_stdin, :bool
@@ -19,7 +19,7 @@ module Containers
19
19
  if process_resource!(@state).nil?
20
20
  render_wizard @state
21
21
  else
22
- create_container
22
+ params[:start_on_create] ? create_container : create_container(false)
23
23
  end
24
24
  else
25
25
  render_wizard @state
@@ -45,15 +45,20 @@ module Containers
45
45
  @state.send(:"#{step}") || @state.send(:"build_#{step}"))
46
46
  end
47
47
 
48
- def create_container
48
+ def create_container(start = true)
49
49
  @state.send(:"create_#{step}", params[:"docker_container_wizard_states_#{step}"])
50
- container = (service = Service::Containers.new).start_container!(@state)
50
+ service = Service::Containers.new
51
+ container = if start.is_a? TrueClass
52
+ service.start_container!(@state)
53
+ else
54
+ service.create_container!(@state)
55
+ end
51
56
  if container.present?
52
57
  process_success(:object => container, :success_redirect => container_path(container))
53
58
  else
54
59
  @docker_container_wizard_states_environment = @state.environment
55
60
  process_error(
56
- :error_msg => service.errors,
61
+ :error_msg => service.errors.full_messages.join(','),
57
62
  :object => @state.environment,
58
63
  :render => 'environment')
59
64
  end
@@ -60,7 +60,15 @@ class ImageSearchController < ::ApplicationController
60
60
  end
61
61
 
62
62
  def hub_search_image(terms)
63
- @compute_resource.search(terms)
63
+ @compute_resource.search(terms).map do |item|
64
+ # el7 returns -> "name" => "docker.io: docker.io/centos",
65
+ # while f20 returns -> "name" => "centos"
66
+ # we need repo name to be => "docker.io/centos" for el7 and "centos" for fedora
67
+ # to ensure proper search with respect to the tags, image creation etc.
68
+ new_item = item.clone
69
+ new_item["name"] = item["name"].split.last
70
+ new_item
71
+ end
64
72
  end
65
73
 
66
74
  def registry_image_exists?(term)
@@ -77,14 +77,6 @@ module ContainersHelper
77
77
  text_field_tag(name, val, options)
78
78
  end
79
79
 
80
- def hub_url(image)
81
- if image['is_official']
82
- "https://registry.hub.docker.com/_/#{image['name']}"
83
- else
84
- "https://registry.hub.docker.com/u/#{image['name']}"
85
- end
86
- end
87
-
88
80
  # Compatibility fixes - to be removed once 1.7 compatibility is no longer required
89
81
  if SETTINGS[:version].to_s.to_f <= 1.7
90
82
  def trunc_with_tooltip(text, length = 32)
@@ -40,7 +40,8 @@ class Container < ActiveRecord::Base
40
40
  def parametrize
41
41
  { 'name' => name, # key has to be lower case to be picked up by the Docker API
42
42
  'Image' => repository_pull_url,
43
- 'Tty' => tty, 'Memory' => memory,
43
+ 'Tty' => tty,
44
+ 'Memory' => ::ForemanDocker::Utility.parse_memory(memory),
44
45
  'Entrypoint' => entrypoint.try(:split), 'Cmd' => command.try(:split),
45
46
  'AttachStdout' => attach_stdout, 'AttachStdin' => attach_stdin,
46
47
  'AttachStderr' => attach_stderr, 'CpuShares' => cpu_shares,
@@ -4,7 +4,6 @@ module DockerContainerWizardStates
4
4
  belongs_to :wizard_state, :class_name => DockerContainerWizardState,
5
5
  :foreign_key => :docker_container_wizard_state_id
6
6
 
7
- validates :name, :presence => true
8
7
  validates :command, :presence => true
9
8
  end
10
9
  end
@@ -6,31 +6,48 @@ module Service
6
6
 
7
7
  def start_container!(wizard_state)
8
8
  ActiveRecord::Base.transaction do
9
- container = Container.new(wizard_state.container_attributes) do |r|
10
- # eagerly load environment variables and exposed ports configuration
11
- state = DockerContainerWizardState.includes(
12
- :environment => [:environment_variables, :exposed_ports]).find(wizard_state.id)
9
+ container = create_container_object(wizard_state)
10
+ container.save!
11
+ run_container(container)
12
+ destroy_wizard_state(wizard_state)
13
+ container
14
+ end
15
+ end
13
16
 
14
- load_environment_variables(state, r)
15
- load_exposed_ports(state, r)
16
- load_dns(state, r)
17
- end
17
+ def create_container!(wizard_state)
18
+ ActiveRecord::Base.transaction do
19
+ container = create_container_object(wizard_state)
20
+ container.save!
21
+ destroy_wizard_state(wizard_state)
22
+ container
23
+ end
24
+ end
18
25
 
19
- Taxonomy.enabled_taxonomies.each do |taxonomy|
20
- container.send(:"#{taxonomy}=", wizard_state.preliminary.send(:"#{taxonomy}"))
21
- end
26
+ def create_container_object(wizard_state)
27
+ container = Container.new(wizard_state.container_attributes) do |r|
28
+ # eagerly load environment variables and exposed ports configuration
29
+ state = DockerContainerWizardState.includes(
30
+ :environment => [:environment_variables, :exposed_ports]).find(wizard_state.id)
22
31
 
23
- unless container.valid?
24
- @errors = container.errors
25
- fail ActiveRecord::Rollback
26
- end
32
+ load_environment_variables(state, r)
33
+ load_exposed_ports(state, r)
34
+ load_dns(state, r)
35
+ end
27
36
 
28
- fail ActiveRecord::Rollback unless pull_image(container) && start_container(container)
37
+ Taxonomy.enabled_taxonomies.each do |taxonomy|
38
+ container.send(:"#{taxonomy}=", wizard_state.preliminary.send(:"#{taxonomy}"))
39
+ end
29
40
 
30
- container.save!
31
- destroy_wizard_state(wizard_state)
32
- container
41
+ unless container.valid?
42
+ @errors = container.errors
43
+ fail ActiveRecord::Rollback
33
44
  end
45
+
46
+ fail ActiveRecord::Rollback unless pull_image(container) && start_container(container)
47
+
48
+ container.name = container.in_fog.name[1..-1] unless container.name.present?
49
+
50
+ container
34
51
  end
35
52
 
36
53
  def pull_image(container)
@@ -78,5 +95,10 @@ module Service
78
95
  def full_messages
79
96
  @errors.respond_to?(:full_messages) ? @errors.full_messages : @errors
80
97
  end
98
+
99
+ def run_container(container)
100
+ docker_container = container.compute_resource.find_vm_by_uuid(container.uuid)
101
+ error(_('Could not start container')) unless docker_container.send(:start)
102
+ end
81
103
  end
82
104
  end
@@ -0,0 +1,20 @@
1
+ module ForemanDocker
2
+ module Utility
3
+ def self.parse_memory(mem)
4
+ return 0 unless mem.present?
5
+ mem.gsub!(/\s/, '')
6
+ return mem.to_i if mem[/^\d*$/] # Return if size is without unit
7
+ size, unit = mem.match(/^(\d+)([a-zA-Z])$/)[1, 2]
8
+ case unit.downcase
9
+ when 'g'
10
+ size.to_i * 1024 * 1024 * 1024
11
+ when 'm'
12
+ size.to_i * 1024 * 1024
13
+ when 'k'
14
+ size.to_i * 1024
15
+ else
16
+ fail "Unknown size unit '#{unit}'"
17
+ end
18
+ end
19
+ end
20
+ end
@@ -3,9 +3,9 @@
3
3
  <%= password_f f, :password %>
4
4
  <%= text_f f, :email %>
5
5
 
6
- <% client = f.object.client rescue [] %>
6
+ <% authenticated = f.object.authenticate! rescue false %>
7
7
  <%= link_to_function _("Test Connection"), "testConnection(this)",
8
- :class => "btn + #{client.nil? ? "btn-default" : "btn-success"}",
8
+ :class => "btn + #{authenticated ? "btn-success" : "btn-default"}",
9
9
  :'data-url' => test_connection_compute_resources_path %>
10
10
 
11
11
  <%= image_tag('/assets/spinner.gif', :id => 'test_connection_indicator', :class => 'hide') %>
@@ -25,7 +25,11 @@
25
25
  </tr>
26
26
  <tr>
27
27
  <td><%= _('CPU shares') %></td>
28
- <td><%= @container.in_fog.cores %></td>
28
+ <td><%= @container.in_fog.cpu_shares %></td>
29
+ </tr>
30
+ <tr>
31
+ <td><%= _('CPU set') %></td>
32
+ <td><%= @container.cpu_set %></td>
29
33
  </tr>
30
34
  <tr>
31
35
  <td><%= _('UUID') %></td>
@@ -29,7 +29,16 @@
29
29
  <%= link_to_add_fields(_("Add DNS"), f, :dns,
30
30
  'foreman_docker/common_parameters/dns') %>
31
31
  </div>
32
- </div>
32
+ </div>
33
+ <div class="row">
34
+ <div class="form-group col-md-6">
35
+ <label class="col-md-2"><%= _('Run ?') %></label>
36
+ <div class="col-md-4">
37
+ <%= check_box_tag(:start_on_create) %>
38
+ <%= content_tag(:span, _('If selected, the container will start after it is created'), :class => "help-block").html_safe %>
39
+ </div>
40
+ </div>
41
+ </div>
33
42
  <%= render :partial => 'form_buttons' %>
34
43
  <% end %>
35
44
  <% end %>
@@ -7,6 +7,5 @@
7
7
  </p>
8
8
  <p>
9
9
  <%= trunc_with_tooltip(repository['description']) %>
10
- <%= link_to '<span class="glyphicon glyphicon-share"></span>'.html_safe, hub_url(repository), :target => '_blank' %>
11
10
  </p>
12
11
  <% end %>
@@ -1,6 +1,5 @@
1
1
  require 'fast_gettext'
2
2
  require 'gettext_i18n_rails'
3
- require 'fog'
4
3
  require 'fog/fogdocker'
5
4
  require 'wicked'
6
5
  require 'docker'
@@ -1,3 +1,3 @@
1
1
  module ForemanDocker
2
- VERSION = '1.3.1'
2
+ VERSION = '1.4.0'
3
3
  end
@@ -0,0 +1,456 @@
1
+ # hpeters <hpeters@redhat.com>, 2015. #zanata
2
+ # jdimanos <jdimanos@redhat.com>, 2015. #zanata
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: version 0.0.1\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2015-04-22 12:12-0400\n"
8
+ "PO-Revision-Date: 2015-04-27 11:49+0000\n"
9
+ "Last-Translator: hpeters <hpeters@redhat.com>\n"
10
+ "Language-Team: German\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Language: de\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
16
+ "X-Generator: Zanata 3.6.0\n"
17
+
18
+ msgid "\"#{resource.name}\""
19
+ msgstr "\"#{resource.name}\""
20
+
21
+ msgid "%{container} commit was successful"
22
+ msgstr "Festschreiben von %{container} war erfolgreich"
23
+
24
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
25
+ msgid "%{cores} Cores and %{memory} memory"
26
+ msgstr "%{cores} Kerne und %{memory} Speicher"
27
+
28
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman, author hpeters
29
+ msgid "%{vm} is now %{vm_state}"
30
+ msgstr "%{vm} ist jetzt %{vm_state}"
31
+
32
+ msgid "Add environment variable"
33
+ msgstr "Umgebungsvariable hinzufügen"
34
+
35
+ msgid "All containers"
36
+ msgstr "Alle Container"
37
+
38
+ msgid "Allocate a pseudo-tty"
39
+ msgstr "Pseudo-TTY zuweisen"
40
+
41
+ msgid "An error occured during repository search: '%s'"
42
+ msgstr "Ein Fehler ist während der Repository-Suche aufgetreten: \"%s\""
43
+
44
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
45
+ msgid "Are you sure you want to power %{act} %{vm}?"
46
+ msgstr "Sind Sie sicher, dass Sie %{vm} %{act} möchten?"
47
+
48
+ msgid "Attach STDERR"
49
+ msgstr "Standardfehlerausgabe anfügen"
50
+
51
+ msgid "Attach STDIN"
52
+ msgstr "Standardeingabe anfügen"
53
+
54
+ msgid "Attach STDOUT"
55
+ msgstr "Standardausgabe anfügen"
56
+
57
+ # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
58
+ msgid "Author"
59
+ msgstr "Autor"
60
+
61
+ # translation auto-copied from project Satellite6 Foreman Bootdisk, version 6.1, document foreman_bootdisk
62
+ msgid "Back"
63
+ msgstr "Zurück"
64
+
65
+ msgid "Basic options"
66
+ msgstr "Grundlegende Optionen"
67
+
68
+ msgid "CPU sets"
69
+ msgstr "CPU-Gruppen"
70
+
71
+ msgid "CPU shares"
72
+ msgstr "CPU-Anteile"
73
+
74
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
75
+ msgid "CPUs"
76
+ msgstr "CPUs"
77
+
78
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
79
+ msgid "Cancel"
80
+ msgstr "Abbrechen"
81
+
82
+ # translation auto-copied from project nautilus, version 3.8.2, document nautilus
83
+ msgid "Command"
84
+ msgstr "Befehl"
85
+
86
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
87
+ msgid "Comment"
88
+ msgstr "Kommentar"
89
+
90
+ msgid "Commit"
91
+ msgstr "Festschreiben"
92
+
93
+ msgid "Commit this container state"
94
+ msgstr "Diesen Container-Status festschreiben"
95
+
96
+ msgid "Compute options"
97
+ msgstr "Rechenoptionen"
98
+
99
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
100
+ msgid "Compute resource"
101
+ msgstr "Rechnerressource"
102
+
103
+ msgid "Container %s is being deleted."
104
+ msgstr "Container %s wird gelöscht."
105
+
106
+ msgid "Containers"
107
+ msgstr "Container"
108
+
109
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
110
+ msgid "Cores"
111
+ msgstr "Kerne"
112
+
113
+ msgid "Create a container"
114
+ msgstr "Container erstellen"
115
+
116
+ msgid "Create container in a compute resource"
117
+ msgstr "Container in einer Rechnerressource erstellen"
118
+
119
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
120
+ msgid "Delete %s?"
121
+ msgstr "%s löschen?"
122
+
123
+ msgid "Delete a container"
124
+ msgstr "Container löschen"
125
+
126
+ msgid "Delete container in a compute resource"
127
+ msgstr "Container in einer Rechnerressource löschen"
128
+
129
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
130
+ msgid "Deploy on"
131
+ msgstr "Bereitstellen auf"
132
+
133
+ msgid "Describing of the registry"
134
+ msgstr "Beschreibung der Registry"
135
+
136
+ # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
137
+ msgid "Description"
138
+ msgstr "Beschreibung"
139
+
140
+ msgid "Description of the commit"
141
+ msgstr "Beschreibung der Festschreibung"
142
+
143
+ msgid "Docker hub"
144
+ msgstr "Docker-Hub"
145
+
146
+ msgid "Docker/Container"
147
+ msgstr "Docker/Container"
148
+
149
+ msgid "Docker/Registry"
150
+ msgstr "Docker/Registry"
151
+
152
+ msgid "Does this image support user data input?"
153
+ msgstr "Unterstützt dieses Image die Eingabe von Benutzerdaten?"
154
+
155
+ msgid "Edit Registry"
156
+ msgstr "Registry bearbeiten"
157
+
158
+ msgid "Environment Variables"
159
+ msgstr "Umgebungsvariablen"
160
+
161
+ msgid "Environment variables"
162
+ msgstr "Umgebungsvariablen"
163
+
164
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
165
+ msgid "Error - %{message}"
166
+ msgstr "Fehler - %{message}"
167
+
168
+ msgid "Error connecting with the compute resource: <strong> %s </strong>"
169
+ msgstr "Fehler beim Verbinden mit der Rechnerressource: <strong> %s </strong>"
170
+
171
+ msgid "Error creating communicating with Docker. Check the Foreman logs: %s"
172
+ msgstr ""
173
+ "Fehler bei der Kommunikation mit Docker. Prüfen Sie die Foreman-Protokolle: "
174
+ "%s"
175
+
176
+ msgid "Exposed ports"
177
+ msgstr "Offene Ports"
178
+
179
+ msgid "External registry"
180
+ msgstr "Externe Registry"
181
+
182
+ msgid "Failed to commit %{container}: %{e}"
183
+ msgstr "Festschreiben von %{container} fehlgeschlagen: %{e}"
184
+
185
+ msgid "Find your favorite container, e.g: centos"
186
+ msgstr "Suchen Sie Ihren bevorzugten Container, z. B.: centos"
187
+
188
+ msgid "Foreman user <foremaner@theforeman.org>"
189
+ msgstr "Foreman-Benutzer <foremaner@theforeman.org>"
190
+
191
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
192
+ msgid "IP Address"
193
+ msgstr "IP-Adresse"
194
+
195
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
196
+ msgid "Image"
197
+ msgstr "Image"
198
+
199
+ msgid "Image Repository"
200
+ msgstr "Image-Repository"
201
+
202
+ msgid "Image Tag"
203
+ msgstr "Image-Tag"
204
+
205
+ msgid ""
206
+ "Image to use to create the container.\\n "
207
+ " Format should be repository:tag, e.g: centos:7"
208
+ msgstr ""
209
+ "Image zur Erstellung des Containers.\\n "
210
+ " Format lautet Repository:Tag, z. B.: centos:7"
211
+
212
+ # translation auto-copied from project Red Hat Satellite Installation Guide, version 6.0, document RednbspHat_Satellite_6_Supported_Usage
213
+ msgid "Katello"
214
+ msgstr "Katello"
215
+
216
+ msgid "List all containers"
217
+ msgstr "Alle Container auflisten"
218
+
219
+ msgid "List all containers in a compute resource"
220
+ msgstr "Alle Container in einer Rechnerressource auflisten"
221
+
222
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
223
+ msgid "Locations"
224
+ msgstr "Standorte"
225
+
226
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
227
+ msgid "Logs"
228
+ msgstr "Protokolle"
229
+
230
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
231
+ msgid "Managed"
232
+ msgstr "Verwaltet"
233
+
234
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
235
+ msgid "Memory"
236
+ msgstr "Speicher"
237
+
238
+ # translation auto-copied from project Satellite6 Katello, version 6.1, document katello
239
+ msgid "Name"
240
+ msgstr "Name"
241
+
242
+ msgid "Name, e.g: PING_HOST"
243
+ msgstr "Name, z. B.: PING_HOST"
244
+
245
+ msgid "New Registry"
246
+ msgstr "Neue Registry"
247
+
248
+ msgid "New container"
249
+ msgstr "Neuer Container"
250
+
251
+ # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author jdimanos
252
+ msgid "Next"
253
+ msgstr "Weiter"
254
+
255
+ # translation auto-copied from project Satellite6 Katello, version 6.1, document katello, author jdimanos
256
+ msgid "No"
257
+ msgstr "Nein"
258
+
259
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
260
+ msgid "Notice"
261
+ msgstr "Hinweis"
262
+
263
+ msgid "Number of lines to tail. Default: 100"
264
+ msgstr "Anzahl der anzuzeigenden Zeilen. Standard: 100"
265
+
266
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
267
+ msgid "Organizations"
268
+ msgstr "Organisationen"
269
+
270
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
271
+ msgid "Password to authenticate with - used for SSH finish step."
272
+ msgstr ""
273
+ "Passwort zur Authentifizierung – verwendet im letzten Schritt von SSH."
274
+
275
+ msgid "Password used for authentication to the registry"
276
+ msgstr "Passwort zur Authentifikation bei Registry"
277
+
278
+ msgid ""
279
+ "Please turn on your container to see processes running, logs, and more."
280
+ msgstr ""
281
+ "Bitte schalten Sie Ihren Container an, um laufende Prozesse, Protokolle und "
282
+ "mehr zu sehen."
283
+
284
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
285
+ msgid "Power"
286
+ msgstr "Strom"
287
+
288
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
289
+ msgid "Power ON this machine"
290
+ msgstr "System starten"
291
+
292
+ # translation auto-copied from project gnome-system-monitor, version 3.8.2.1, document gnome-system-monitor
293
+ msgid "Processes"
294
+ msgstr "Prozesse"
295
+
296
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
297
+ msgid "Properties"
298
+ msgstr "Eigenschaften"
299
+
300
+ msgid "Registries"
301
+ msgstr "Registrys"
302
+
303
+ msgid "Registry"
304
+ msgstr "Registry"
305
+
306
+ msgid "Registry name"
307
+ msgstr "Registry-Name"
308
+
309
+ msgid ""
310
+ "Registry this container will have to use\\n "
311
+ " to get the image"
312
+ msgstr ""
313
+ "Registry, die dieser Container verwenden muss,\\n "
314
+ " um das Image zu erhalten"
315
+
316
+ msgid "Registry url"
317
+ msgstr "Registry-URL"
318
+
319
+ msgid "Repo"
320
+ msgstr "Repository"
321
+
322
+ msgid "Resource selection"
323
+ msgstr "Ressourcenauswahl"
324
+
325
+ msgid "Run power operation on a container"
326
+ msgstr "Stromoperation auf einem Container ausführen"
327
+
328
+ msgid "Run power operation on a container in a compute resource"
329
+ msgstr ""
330
+ "Stromoperation auf einem Container in einer Rechnerressource ausführen"
331
+
332
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
333
+ msgid "Running on"
334
+ msgstr "Läuft auf"
335
+
336
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
337
+ msgid "Search"
338
+ msgstr "Suche"
339
+
340
+ msgid "Select a registry"
341
+ msgstr "Registry wählen"
342
+
343
+ # translation auto-copied from project RHEL Deployment Guide, version 6.2, document Managing_Users_and_Groups
344
+ msgid "Shell"
345
+ msgstr "Shell"
346
+
347
+ msgid "Show a container"
348
+ msgstr "Container anzeigen"
349
+
350
+ msgid "Show container in a compute resource"
351
+ msgstr "Container in einer Rechnerressource anzeigen"
352
+
353
+ msgid "Show container logs"
354
+ msgstr "Container-Protokolle anzeigen"
355
+
356
+ msgid "Show logs from a container in a compute resource"
357
+ msgstr "Protokolle von einem Container in einer Rechnerressource anzeigen"
358
+
359
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
360
+ msgid "Start"
361
+ msgstr "Start"
362
+
363
+ # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
364
+ msgid "Status"
365
+ msgstr "Status"
366
+
367
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
368
+ msgid "Submit"
369
+ msgstr "Absenden"
370
+
371
+ # translation auto-copied from project gnome-contacts, version 3.8.2, document gnome-contacts
372
+ msgid "TTY"
373
+ msgstr "TTY"
374
+
375
+ # translation auto-copied from project shotwell-core, version 0.14.1, document shotwell-core
376
+ msgid "Tag"
377
+ msgstr "Tag"
378
+
379
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
380
+ msgid "Test Connection"
381
+ msgstr "Verbindung testen"
382
+
383
+ msgid ""
384
+ "The user that is used to ssh into the instance, normally docker-user, "
385
+ "ubuntu, root etc"
386
+ msgstr ""
387
+ "Der Benutzer für die SSH-Verbindung zur Instanz. Normalerweise docker-user, "
388
+ "ubuntu, root etc."
389
+
390
+ # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
391
+ msgid "URL"
392
+ msgstr "URL"
393
+
394
+ # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
395
+ msgid "UUID"
396
+ msgstr "UUID"
397
+
398
+ msgid "Unknown method: available power operations are %s"
399
+ msgstr "Unbekannte Methode: verfügbare Stromoperationen sind %s"
400
+
401
+ # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/database/StringResource
402
+ msgid "Uptime"
403
+ msgstr "Betriebszeit"
404
+
405
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
406
+ msgid "Url"
407
+ msgstr "URL"
408
+
409
+ msgid "Username used to access the registry"
410
+ msgstr "Benutzername zum Zugriff auf Registry"
411
+
412
+ msgid "Value, e.g: theforeman.org"
413
+ msgstr "Wert, z. B.: theforeman.org"
414
+
415
+ msgid "Where do you want to deploy your container?:"
416
+ msgstr "Wo möchten Sie Ihren Container bereitstellen?"
417
+
418
+ msgid "Wrong attributes: %s"
419
+ msgstr "Fehlerhafte Attribute: %s"
420
+
421
+ # translation auto-copied from project Satellite6 Katello, version 6.1, document katello, author jdimanos
422
+ msgid "Yes"
423
+ msgstr "Ja"
424
+
425
+ msgid ""
426
+ "You need a Docker compute resource in order to create containers. Please %s "
427
+ "and try again."
428
+ msgstr ""
429
+ "Sie benötigen eine Docker-Rechnerressource, um Container zu erstellen. Bitte "
430
+ "%s und erneut versuchen."
431
+
432
+ msgid "Your container is stopped."
433
+ msgstr "Ihr Container ist gestoppt."
434
+
435
+ msgid "docker/my-committed-image"
436
+ msgstr "docker/my-committed-image"
437
+
438
+ msgid "e.g. https://docker.example.com:4243 or unix:///var/run/docker.sock"
439
+ msgstr ""
440
+ "z. B. https://docker.example.com:4243 oder unix:///var/run/docker.sock"
441
+
442
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman, author hpeters
443
+ msgid "failed to %{action} %{vm}"
444
+ msgstr "Fehler beim %{action} von %{vm}"
445
+
446
+ msgid "latest"
447
+ msgstr "neueste"
448
+
449
+ msgid "learn more about CPU sets"
450
+ msgstr "Mehr Informationen über CPU-Gruppen"
451
+
452
+ msgid "learn more about CPU shares"
453
+ msgstr "Mehr Informationen über CPU-Anteile"
454
+
455
+ msgid "power action, valid actions are (start), (stop), (status)"
456
+ msgstr "Stromaktion, gültige Aktionen sind (start), (stop), (status)"