foreman_remote_execution 3.1.0 → 3.3.2

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 (94) hide show
  1. checksums.yaml +4 -4
  2. data/.eslintrc +5 -30
  3. data/.github/workflows/ci.yml +100 -0
  4. data/.gitignore +1 -0
  5. data/.rubocop_todo.yml +3 -0
  6. data/Gemfile +1 -0
  7. data/app/controllers/api/v2/job_invocations_controller.rb +22 -1
  8. data/app/controllers/api/v2/template_invocations_controller.rb +4 -1
  9. data/app/helpers/job_invocations_chart_helper.rb +2 -0
  10. data/app/helpers/job_invocations_helper.rb +6 -1
  11. data/app/helpers/remote_execution_helper.rb +39 -30
  12. data/app/lib/actions/remote_execution/run_host_job.rb +3 -2
  13. data/app/lib/proxy_api/remote_execution_ssh.rb +6 -0
  14. data/app/models/concerns/foreman_remote_execution/host_extensions.rb +1 -1
  15. data/app/models/concerns/foreman_remote_execution/orchestration/ssh.rb +63 -0
  16. data/app/models/concerns/foreman_remote_execution/smart_proxy_extensions.rb +4 -0
  17. data/app/models/host_status/execution_status.rb +9 -1
  18. data/app/models/remote_execution_provider.rb +5 -0
  19. data/app/services/default_proxy_proxy_selector.rb +18 -0
  20. data/app/views/api/v2/job_invocations/main.json.rabl +8 -2
  21. data/app/views/job_invocations/_card_results.html.erb +1 -0
  22. data/app/views/job_invocations/_card_user_input.html.erb +1 -1
  23. data/app/views/job_invocations/_tab_hosts.html.erb +3 -23
  24. data/app/views/job_invocations/_tab_overview.html.erb +1 -1
  25. data/app/views/job_invocations/_user_input.html.erb +1 -1
  26. data/app/views/job_invocations/show.html.erb +1 -7
  27. data/app/views/job_invocations/show.json.erb +4 -0
  28. data/config/routes.rb +2 -1
  29. data/db/seeds.d/70-job_templates.rb +1 -1
  30. data/foreman_remote_execution.gemspec +5 -6
  31. data/lib/foreman_remote_execution/engine.rb +2 -0
  32. data/lib/foreman_remote_execution/version.rb +1 -1
  33. data/locale/action_names.rb +3 -3
  34. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  35. data/locale/de/foreman_remote_execution.po +65 -16
  36. data/locale/en/foreman_remote_execution.po +63 -15
  37. data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  38. data/locale/en_GB/foreman_remote_execution.po +64 -15
  39. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  40. data/locale/es/foreman_remote_execution.po +66 -17
  41. data/locale/foreman_remote_execution.pot +193 -148
  42. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  43. data/locale/fr/foreman_remote_execution.po +66 -17
  44. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  45. data/locale/ja/foreman_remote_execution.po +66 -17
  46. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  47. data/locale/ko/foreman_remote_execution.po +65 -15
  48. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  49. data/locale/pt_BR/foreman_remote_execution.po +66 -17
  50. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  51. data/locale/ru/foreman_remote_execution.po +65 -18
  52. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  53. data/locale/zh_CN/foreman_remote_execution.po +66 -17
  54. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  55. data/locale/zh_TW/foreman_remote_execution.po +65 -16
  56. data/package.json +16 -33
  57. data/test/functional/api/v2/job_invocations_controller_test.rb +42 -14
  58. data/test/functional/job_invocations_controller_test.rb +12 -0
  59. data/test/models/orchestration/ssh_test.rb +56 -0
  60. data/test/unit/concerns/host_extensions_test.rb +7 -0
  61. data/test/unit/remote_execution_provider_test.rb +4 -1
  62. data/webpack/__mocks__/foremanReact/common/I18n.js +1 -0
  63. data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +3 -0
  64. data/webpack/__mocks__/foremanReact/constants.js +3 -0
  65. data/webpack/index.js +9 -22
  66. data/webpack/react_app/components/TargetingHosts/TargetingHosts.js +52 -0
  67. data/webpack/react_app/components/TargetingHosts/TargetingHostsActions.js +8 -0
  68. data/webpack/react_app/components/TargetingHosts/TargetingHostsConsts.js +1 -0
  69. data/webpack/react_app/components/TargetingHosts/TargetingHostsSelectors.js +12 -0
  70. data/webpack/react_app/components/TargetingHosts/__tests__/HostItem.test.js +6 -0
  71. data/webpack/react_app/components/TargetingHosts/__tests__/HostStatus.test.js +6 -0
  72. data/webpack/react_app/components/TargetingHosts/__tests__/TargetingHosts.test.js +6 -0
  73. data/webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/HostItem.test.js.snap +31 -0
  74. data/webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/HostStatus.test.js.snap +12 -0
  75. data/webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/TargetingHosts.test.js.snap +81 -0
  76. data/webpack/react_app/components/TargetingHosts/__tests__/fixtures.js +43 -0
  77. data/webpack/react_app/components/TargetingHosts/components/HostItem.js +39 -0
  78. data/webpack/react_app/components/TargetingHosts/components/HostStatus.js +54 -0
  79. data/webpack/react_app/components/TargetingHosts/index.js +37 -0
  80. data/webpack/react_app/components/jobInvocations/AggregateStatus/index.js +10 -0
  81. data/webpack/react_app/components/jobInvocations/AggregateStatus/index.test.js +6 -3
  82. data/webpack/react_app/components/jobInvocations/index.js +19 -7
  83. data/webpack/react_app/redux/actions/jobInvocations/index.js +12 -8
  84. data/webpack/react_app/redux/consts.js +1 -2
  85. data/webpack/react_app/redux/reducers/jobInvocations/index.fixtures.js +8 -40
  86. data/webpack/react_app/redux/reducers/jobInvocations/index.test.js +17 -11
  87. data/webpack/test_setup.js +2 -1
  88. metadata +31 -14
  89. data/.hound.yml +0 -19
  90. data/.travis.yml +0 -6
  91. data/app/views/job_invocations/_host_actions_td.html.erb +0 -3
  92. data/app/views/job_invocations/_host_name_td.html.erb +0 -8
  93. data/app/views/job_invocations/_host_status_td.html.erb +0 -1
  94. data/app/views/job_invocations/show.js.erb +0 -23
@@ -26,12 +26,6 @@ msgstr ""
26
26
  msgid "%{description} on %{host}"
27
27
  msgstr ""
28
28
 
29
- #, fuzzy
30
- msgid "...and %{count} more"
31
- msgid_plural "...and %{count} more"
32
- msgstr[0] ""
33
- msgstr[1] ""
34
-
35
29
  msgid "A comma separated list of input names to be excluded from the foreign template."
36
30
  msgstr ""
37
31
 
@@ -59,12 +53,21 @@ msgstr ""
59
53
  msgid "Add Foreign Input Set"
60
54
  msgstr ""
61
55
 
56
+ msgid "Alphabetical"
57
+ msgstr ""
58
+
62
59
  msgid "Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required."
63
60
  msgstr ""
64
61
 
65
62
  msgid "Another interface is already set as execution. Are you sure you want to use this one instead?"
66
63
  msgstr ""
67
64
 
65
+ msgid "Any Location"
66
+ msgstr ""
67
+
68
+ msgid "Any Organization"
69
+ msgstr ""
70
+
68
71
  msgid "Back to Job"
69
72
  msgstr ""
70
73
 
@@ -92,6 +95,9 @@ msgstr ""
92
95
  msgid "Cannot specify both recurrence and scheduling"
93
96
  msgstr ""
94
97
 
98
+ msgid "Choose a job template that is pre-selected in job invocation form"
99
+ msgstr ""
100
+
95
101
  msgid "Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}"
96
102
  msgstr ""
97
103
 
@@ -146,6 +152,12 @@ msgstr ""
146
152
  msgid "Create a recurring job"
147
153
  msgstr ""
148
154
 
155
+ msgid "Current location %{loc_c} is different from job's location %{loc_j}."
156
+ msgstr ""
157
+
158
+ msgid "Current organization %{org_c} is different from job's organization %{org_j}."
159
+ msgstr ""
160
+
149
161
  msgid "Default SSH key passphrase"
150
162
  msgstr ""
151
163
 
@@ -179,7 +191,7 @@ msgstr ""
179
191
  msgid "Display advanced fields"
180
192
  msgstr ""
181
193
 
182
- msgid "Distribute execution over N seconds"
194
+ msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
183
195
  msgstr ""
184
196
 
185
197
  msgid "Distribute tasks over N seconds"
@@ -224,9 +236,21 @@ msgstr ""
224
236
  msgid "Evaluated at:"
225
237
  msgstr ""
226
238
 
239
+ msgid "Execute the jobs on hosts in randomized order"
240
+ msgstr ""
241
+
227
242
  msgid "Execution"
228
243
  msgstr ""
229
244
 
245
+ msgid "Execution order"
246
+ msgstr ""
247
+
248
+ msgid "Execution ordering"
249
+ msgstr ""
250
+
251
+ msgid "Execution ordering determines whether the jobs should be executed on hosts in alphabetical order or in randomized order.<br><ul><li><b>Ordered</b> - executes the jobs on hosts in alphabetical order</li><li><b>Randomized</b> - randomizes the order in which jobs are executed on hosts</li></ul>"
252
+ msgstr ""
253
+
230
254
  msgid "Exit status: %s"
231
255
  msgstr ""
232
256
 
@@ -257,6 +281,9 @@ msgstr ""
257
281
  msgid "Foreman can run arbitrary commands on remote hosts using different providers, such as SSH or Ansible. Communication goes through the Smart Proxy so Foreman does not have to have direct access to the target hosts and can scale to control many hosts."
258
282
  msgstr ""
259
283
 
284
+ msgid "Form Job Template"
285
+ msgstr ""
286
+
260
287
  msgid "Get output for a host"
261
288
  msgstr ""
262
289
 
@@ -377,6 +404,9 @@ msgstr ""
377
404
  msgid "Label"
378
405
  msgstr ""
379
406
 
407
+ msgid "Last execution cancelled"
408
+ msgstr ""
409
+
380
410
  msgid "Last execution failed"
381
411
  msgstr ""
382
412
 
@@ -407,6 +437,9 @@ msgstr ""
407
437
  msgid "List template invocations belonging to job invocation"
408
438
  msgstr ""
409
439
 
440
+ msgid "Location"
441
+ msgstr ""
442
+
410
443
  msgid "Manual selection"
411
444
  msgstr ""
412
445
 
@@ -425,15 +458,15 @@ msgstr ""
425
458
  msgid "No execution finished yet"
426
459
  msgstr ""
427
460
 
428
- msgid "No hosts found."
429
- msgstr ""
430
-
431
461
  msgid "No template mapped to feature %{feature_name}"
432
462
  msgstr ""
433
463
 
434
464
  msgid "Not all required inputs have values. Missing inputs: %s"
435
465
  msgstr ""
436
466
 
467
+ msgid "Organization"
468
+ msgstr ""
469
+
437
470
  msgid "Override the description format from the template for this invocation only"
438
471
  msgstr ""
439
472
 
@@ -458,6 +491,9 @@ msgstr ""
458
491
  msgid "Pending"
459
492
  msgstr ""
460
493
 
494
+ msgid "Perform a single Puppet run"
495
+ msgstr ""
496
+
461
497
  msgid "Perform no more executions after this time"
462
498
  msgstr ""
463
499
 
@@ -485,6 +521,9 @@ msgstr ""
485
521
  msgid "Proxies"
486
522
  msgstr ""
487
523
 
524
+ msgid "Randomized"
525
+ msgstr ""
526
+
488
527
  msgid "Recurring logic"
489
528
  msgstr ""
490
529
 
@@ -509,6 +548,9 @@ msgstr ""
509
548
  msgid "Remote execution feature label that should be triggered, job template assigned to this feature will be used"
510
549
  msgstr ""
511
550
 
551
+ msgid "Remove SSH known hosts for %s"
552
+ msgstr ""
553
+
512
554
  msgid "Repeat a maximum of N times"
513
555
  msgstr ""
514
556
 
@@ -542,9 +584,15 @@ msgstr ""
542
584
  msgid "Run Job"
543
585
  msgstr ""
544
586
 
587
+ msgid "Run Puppet Once"
588
+ msgstr ""
589
+
545
590
  msgid "Run at most N tasks at a time"
546
591
  msgstr ""
547
592
 
593
+ msgid "Run at most N tasks at a time. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
594
+ msgstr ""
595
+
548
596
  msgid "SSH"
549
597
  msgstr ""
550
598
 
@@ -587,7 +635,7 @@ msgstr ""
587
635
  msgid "Search Query"
588
636
  msgstr ""
589
637
 
590
- msgid "Search for remote execution proxy outside of the proxies assigned to the host. If locations or organizations are enabled, the search will be limited to the host's organization or location."
638
+ msgid "Search for remote execution proxy outside of the proxies assigned to the host. The search will be limited to the host's organization and location."
591
639
  msgstr ""
592
640
 
593
641
  msgid "Search the host for any proxy with Remote Execution, useful when the host has no subnet or the subnet does not have an execution proxy"
@@ -608,7 +656,7 @@ msgstr ""
608
656
  msgid "Set to distribute over"
609
657
  msgstr ""
610
658
 
611
- msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful, when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip."
659
+ msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip. This setting only applies to IPv4. When the host has only an IPv6 address on the interface used for remote execution, hostname will be used even if this setting is set to true."
612
660
  msgstr ""
613
661
 
614
662
  msgid "Show foreign input set details"
@@ -680,9 +728,6 @@ msgstr ""
680
728
  msgid "Template with id '%{id}' was not found"
681
729
  msgstr ""
682
730
 
683
- msgid "The dynamic query '#{job_invocation.targeting.search_query}' was not resolved yet. The list of hosts to which it would resolve now can be seen"
684
- msgstr ""
685
-
686
731
  msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
687
732
  msgstr ""
688
733
 
@@ -784,6 +829,9 @@ msgstr ""
784
829
  msgid "Unable to fetch public key"
785
830
  msgstr ""
786
831
 
832
+ msgid "Unable to remove host from known hosts"
833
+ msgstr ""
834
+
787
835
  msgid "Unable to save template. Correct highlighted errors"
788
836
  msgstr ""
789
837
 
@@ -27,11 +27,6 @@ msgstr "%s ago"
27
27
  msgid "%{description} on %{host}"
28
28
  msgstr ""
29
29
 
30
- msgid "...and %{count} more"
31
- msgid_plural "...and %{count} more"
32
- msgstr[0] ""
33
- msgstr[1] ""
34
-
35
30
  msgid "A comma separated list of input names to be excluded from the foreign template."
36
31
  msgstr ""
37
32
 
@@ -59,12 +54,21 @@ msgstr ""
59
54
  msgid "Add Foreign Input Set"
60
55
  msgstr ""
61
56
 
57
+ msgid "Alphabetical"
58
+ msgstr ""
59
+
62
60
  msgid "Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required."
63
61
  msgstr ""
64
62
 
65
63
  msgid "Another interface is already set as execution. Are you sure you want to use this one instead?"
66
64
  msgstr ""
67
65
 
66
+ msgid "Any Location"
67
+ msgstr ""
68
+
69
+ msgid "Any Organization"
70
+ msgstr ""
71
+
68
72
  msgid "Back to Job"
69
73
  msgstr ""
70
74
 
@@ -92,6 +96,9 @@ msgstr ""
92
96
  msgid "Cannot specify both recurrence and scheduling"
93
97
  msgstr ""
94
98
 
99
+ msgid "Choose a job template that is pre-selected in job invocation form"
100
+ msgstr ""
101
+
95
102
  msgid "Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}"
96
103
  msgstr ""
97
104
 
@@ -146,6 +153,12 @@ msgstr ""
146
153
  msgid "Create a recurring job"
147
154
  msgstr ""
148
155
 
156
+ msgid "Current location %{loc_c} is different from job's location %{loc_j}."
157
+ msgstr ""
158
+
159
+ msgid "Current organization %{org_c} is different from job's organization %{org_j}."
160
+ msgstr ""
161
+
149
162
  msgid "Default SSH key passphrase"
150
163
  msgstr ""
151
164
 
@@ -179,7 +192,7 @@ msgstr ""
179
192
  msgid "Display advanced fields"
180
193
  msgstr ""
181
194
 
182
- msgid "Distribute execution over N seconds"
195
+ msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
183
196
  msgstr ""
184
197
 
185
198
  msgid "Distribute tasks over N seconds"
@@ -224,9 +237,21 @@ msgstr ""
224
237
  msgid "Evaluated at:"
225
238
  msgstr ""
226
239
 
240
+ msgid "Execute the jobs on hosts in randomized order"
241
+ msgstr ""
242
+
227
243
  msgid "Execution"
228
244
  msgstr ""
229
245
 
246
+ msgid "Execution order"
247
+ msgstr ""
248
+
249
+ msgid "Execution ordering"
250
+ msgstr ""
251
+
252
+ msgid "Execution ordering determines whether the jobs should be executed on hosts in alphabetical order or in randomized order.<br><ul><li><b>Ordered</b> - executes the jobs on hosts in alphabetical order</li><li><b>Randomized</b> - randomizes the order in which jobs are executed on hosts</li></ul>"
253
+ msgstr ""
254
+
230
255
  msgid "Exit status: %s"
231
256
  msgstr ""
232
257
 
@@ -257,6 +282,9 @@ msgstr ""
257
282
  msgid "Foreman can run arbitrary commands on remote hosts using different providers, such as SSH or Ansible. Communication goes through the Smart Proxy so Foreman does not have to have direct access to the target hosts and can scale to control many hosts."
258
283
  msgstr ""
259
284
 
285
+ msgid "Form Job Template"
286
+ msgstr ""
287
+
260
288
  msgid "Get output for a host"
261
289
  msgstr ""
262
290
 
@@ -377,6 +405,9 @@ msgstr ""
377
405
  msgid "Label"
378
406
  msgstr ""
379
407
 
408
+ msgid "Last execution cancelled"
409
+ msgstr ""
410
+
380
411
  msgid "Last execution failed"
381
412
  msgstr ""
382
413
 
@@ -407,6 +438,9 @@ msgstr ""
407
438
  msgid "List template invocations belonging to job invocation"
408
439
  msgstr ""
409
440
 
441
+ msgid "Location"
442
+ msgstr ""
443
+
410
444
  msgid "Manual selection"
411
445
  msgstr ""
412
446
 
@@ -425,15 +459,15 @@ msgstr ""
425
459
  msgid "No execution finished yet"
426
460
  msgstr ""
427
461
 
428
- msgid "No hosts found."
429
- msgstr ""
430
-
431
462
  msgid "No template mapped to feature %{feature_name}"
432
463
  msgstr ""
433
464
 
434
465
  msgid "Not all required inputs have values. Missing inputs: %s"
435
466
  msgstr ""
436
467
 
468
+ msgid "Organization"
469
+ msgstr ""
470
+
437
471
  msgid "Override the description format from the template for this invocation only"
438
472
  msgstr ""
439
473
 
@@ -458,6 +492,9 @@ msgstr ""
458
492
  msgid "Pending"
459
493
  msgstr ""
460
494
 
495
+ msgid "Perform a single Puppet run"
496
+ msgstr ""
497
+
461
498
  msgid "Perform no more executions after this time"
462
499
  msgstr ""
463
500
 
@@ -485,6 +522,9 @@ msgstr ""
485
522
  msgid "Proxies"
486
523
  msgstr ""
487
524
 
525
+ msgid "Randomized"
526
+ msgstr ""
527
+
488
528
  msgid "Recurring logic"
489
529
  msgstr ""
490
530
 
@@ -509,6 +549,9 @@ msgstr ""
509
549
  msgid "Remote execution feature label that should be triggered, job template assigned to this feature will be used"
510
550
  msgstr ""
511
551
 
552
+ msgid "Remove SSH known hosts for %s"
553
+ msgstr ""
554
+
512
555
  msgid "Repeat a maximum of N times"
513
556
  msgstr ""
514
557
 
@@ -542,9 +585,15 @@ msgstr ""
542
585
  msgid "Run Job"
543
586
  msgstr ""
544
587
 
588
+ msgid "Run Puppet Once"
589
+ msgstr ""
590
+
545
591
  msgid "Run at most N tasks at a time"
546
592
  msgstr ""
547
593
 
594
+ msgid "Run at most N tasks at a time. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
595
+ msgstr ""
596
+
548
597
  msgid "SSH"
549
598
  msgstr ""
550
599
 
@@ -587,8 +636,8 @@ msgstr "Search"
587
636
  msgid "Search Query"
588
637
  msgstr ""
589
638
 
590
- msgid "Search for remote execution proxy outside of the proxies assigned to the host. If locations or organizations are enabled, the search will be limited to the host's organization or location."
591
- msgstr "Search for remote execution proxy outside of the proxies assigned to the host. If locations or organisations are enabled, the search will be limited to the host's organisation or location."
639
+ msgid "Search for remote execution proxy outside of the proxies assigned to the host. The search will be limited to the host's organization and location."
640
+ msgstr ""
592
641
 
593
642
  msgid "Search the host for any proxy with Remote Execution, useful when the host has no subnet or the subnet does not have an execution proxy"
594
643
  msgstr ""
@@ -608,7 +657,7 @@ msgstr ""
608
657
  msgid "Set to distribute over"
609
658
  msgstr ""
610
659
 
611
- msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful, when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip."
660
+ msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip. This setting only applies to IPv4. When the host has only an IPv6 address on the interface used for remote execution, hostname will be used even if this setting is set to true."
612
661
  msgstr ""
613
662
 
614
663
  msgid "Show foreign input set details"
@@ -680,9 +729,6 @@ msgstr ""
680
729
  msgid "Template with id '%{id}' was not found"
681
730
  msgstr ""
682
731
 
683
- msgid "The dynamic query '#{job_invocation.targeting.search_query}' was not resolved yet. The list of hosts to which it would resolve now can be seen"
684
- msgstr ""
685
-
686
732
  msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
687
733
  msgstr ""
688
734
 
@@ -784,6 +830,9 @@ msgstr ""
784
830
  msgid "Unable to fetch public key"
785
831
  msgstr ""
786
832
 
833
+ msgid "Unable to remove host from known hosts"
834
+ msgstr ""
835
+
787
836
  msgid "Unable to save template. Correct highlighted errors"
788
837
  msgstr ""
789
838
 
@@ -26,11 +26,6 @@ msgstr "Hace %s"
26
26
  msgid "%{description} on %{host}"
27
27
  msgstr "%{description} en %{host}"
28
28
 
29
- msgid "...and %{count} more"
30
- msgid_plural "...and %{count} more"
31
- msgstr[0] ""
32
- msgstr[1] ""
33
-
34
29
  msgid "A comma separated list of input names to be excluded from the foreign template."
35
30
  msgstr "Una lista de nombres de entrada separados por comas que se debe excluir de la plantilla externa."
36
31
 
@@ -58,12 +53,21 @@ msgstr "Acciones"
58
53
  msgid "Add Foreign Input Set"
59
54
  msgstr "Agregar conjunto de entrada externo"
60
55
 
56
+ msgid "Alphabetical"
57
+ msgstr ""
58
+
61
59
  msgid "Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required."
62
60
  msgstr ""
63
61
 
64
62
  msgid "Another interface is already set as execution. Are you sure you want to use this one instead?"
65
63
  msgstr "Ya hay otra interfaz establecida como ejecución. ¿Está seguro de que desea utilizar esta en cambio?"
66
64
 
65
+ msgid "Any Location"
66
+ msgstr ""
67
+
68
+ msgid "Any Organization"
69
+ msgstr ""
70
+
67
71
  msgid "Back to Job"
68
72
  msgstr "Volver al trabajo"
69
73
 
@@ -91,6 +95,9 @@ msgstr "No se pueden especificar bookmark_id y search_query."
91
95
  msgid "Cannot specify both recurrence and scheduling"
92
96
  msgstr "No se pueden especificar las recurrencias y las programaciones."
93
97
 
98
+ msgid "Choose a job template that is pre-selected in job invocation form"
99
+ msgstr ""
100
+
94
101
  msgid "Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}"
95
102
  msgstr "Dependencia circular detectada en el conjunto de entrada externo '%{template}' -> '%{target_template}'. Pila de plantillas: %{templates_stack}"
96
103
 
@@ -145,6 +152,12 @@ msgstr "Crear una plantilla de trabajo"
145
152
  msgid "Create a recurring job"
146
153
  msgstr "Crear un trabajo recurrente"
147
154
 
155
+ msgid "Current location %{loc_c} is different from job's location %{loc_j}."
156
+ msgstr ""
157
+
158
+ msgid "Current organization %{org_c} is different from job's organization %{org_j}."
159
+ msgstr ""
160
+
148
161
  msgid "Default SSH key passphrase"
149
162
  msgstr "Frase de contraseña de clave SSH predeterminada"
150
163
 
@@ -178,8 +191,8 @@ msgstr "Plantilla de descripción"
178
191
  msgid "Display advanced fields"
179
192
  msgstr "Mostrar campos avanzados"
180
193
 
181
- msgid "Distribute execution over N seconds"
182
- msgstr "Distribuir la ejecución en N segundos"
194
+ msgid "Distribute execution over N seconds. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
195
+ msgstr ""
183
196
 
184
197
  msgid "Distribute tasks over N seconds"
185
198
  msgstr "Distribuir tareas en N segundos"
@@ -223,9 +236,21 @@ msgstr "Error al cargar los datos del proxy"
223
236
  msgid "Evaluated at:"
224
237
  msgstr "Evaluado en:"
225
238
 
239
+ msgid "Execute the jobs on hosts in randomized order"
240
+ msgstr ""
241
+
226
242
  msgid "Execution"
227
243
  msgstr "Ejecución"
228
244
 
245
+ msgid "Execution order"
246
+ msgstr ""
247
+
248
+ msgid "Execution ordering"
249
+ msgstr ""
250
+
251
+ msgid "Execution ordering determines whether the jobs should be executed on hosts in alphabetical order or in randomized order.<br><ul><li><b>Ordered</b> - executes the jobs on hosts in alphabetical order</li><li><b>Randomized</b> - randomizes the order in which jobs are executed on hosts</li></ul>"
252
+ msgstr ""
253
+
229
254
  msgid "Exit status: %s"
230
255
  msgstr "Estado de salida: %s"
231
256
 
@@ -256,6 +281,9 @@ msgstr "Conjunto de entrada externo"
256
281
  msgid "Foreman can run arbitrary commands on remote hosts using different providers, such as SSH or Ansible. Communication goes through the Smart Proxy so Foreman does not have to have direct access to the target hosts and can scale to control many hosts."
257
282
  msgstr ""
258
283
 
284
+ msgid "Form Job Template"
285
+ msgstr ""
286
+
259
287
  msgid "Get output for a host"
260
288
  msgstr "Obtener salida para un host"
261
289
 
@@ -376,6 +404,9 @@ msgstr "La frase de contraseña de la clave solo se aplica para el proveedor de
376
404
  msgid "Label"
377
405
  msgstr "Etiqueta"
378
406
 
407
+ msgid "Last execution cancelled"
408
+ msgstr ""
409
+
379
410
  msgid "Last execution failed"
380
411
  msgstr "Falló la última ejecución."
381
412
 
@@ -406,6 +437,9 @@ msgstr "Listar funcionalidades de ejecución remota"
406
437
  msgid "List template invocations belonging to job invocation"
407
438
  msgstr ""
408
439
 
440
+ msgid "Location"
441
+ msgstr ""
442
+
409
443
  msgid "Manual selection"
410
444
  msgstr "Selección manual"
411
445
 
@@ -424,15 +458,15 @@ msgstr "Nueva plantilla de trabajo"
424
458
  msgid "No execution finished yet"
425
459
  msgstr "Aún no finalizó ninguna ejecución."
426
460
 
427
- msgid "No hosts found."
428
- msgstr "No se encontraron hosts."
429
-
430
461
  msgid "No template mapped to feature %{feature_name}"
431
462
  msgstr "No hay ninguna plantilla mapeada a la funcionalidad %{feature_name}."
432
463
 
433
464
  msgid "Not all required inputs have values. Missing inputs: %s"
434
465
  msgstr "No todas las entradas requeridas tienen valores. Entradas que faltan: %s"
435
466
 
467
+ msgid "Organization"
468
+ msgstr ""
469
+
436
470
  msgid "Override the description format from the template for this invocation only"
437
471
  msgstr "Sustituir el formato de descripción de la plantilla solo para esta invocación"
438
472
 
@@ -457,6 +491,9 @@ msgstr "La contraseña se guarda de forma cifrada en la base de datos hasta que
457
491
  msgid "Pending"
458
492
  msgstr "pendiente"
459
493
 
494
+ msgid "Perform a single Puppet run"
495
+ msgstr ""
496
+
460
497
  msgid "Perform no more executions after this time"
461
498
  msgstr "No ejecutar más después de esta cantidad de veces"
462
499
 
@@ -484,6 +521,9 @@ msgstr "Proveedores y plantillas"
484
521
  msgid "Proxies"
485
522
  msgstr "Proxis"
486
523
 
524
+ msgid "Randomized"
525
+ msgstr ""
526
+
487
527
  msgid "Recurring logic"
488
528
  msgstr "Lógica recurrente"
489
529
 
@@ -508,6 +548,9 @@ msgstr "Ejecución remota"
508
548
  msgid "Remote execution feature label that should be triggered, job template assigned to this feature will be used"
509
549
  msgstr "La etiqueta para la funcionalidad de ejecución remota que se debería desencadenar; se utilizará la plantilla de trabajo asignada a esta funcionalidad"
510
550
 
551
+ msgid "Remove SSH known hosts for %s"
552
+ msgstr ""
553
+
511
554
  msgid "Repeat a maximum of N times"
512
555
  msgstr "Repetir un máximo de N veces"
513
556
 
@@ -541,9 +584,15 @@ msgstr "Ejecutar"
541
584
  msgid "Run Job"
542
585
  msgstr "Ejecutar trabajo"
543
586
 
587
+ msgid "Run Puppet Once"
588
+ msgstr ""
589
+
544
590
  msgid "Run at most N tasks at a time"
545
591
  msgstr "Ejecutar un máximo de N tareas por vez"
546
592
 
593
+ msgid "Run at most N tasks at a time. If this is set and proxy batch triggering is enabled, then tasks are triggered on the smart proxy in batches of size 1."
594
+ msgstr ""
595
+
547
596
  msgid "SSH"
548
597
  msgstr "SSH"
549
598
 
@@ -586,8 +635,8 @@ msgstr "Buscar"
586
635
  msgid "Search Query"
587
636
  msgstr ""
588
637
 
589
- msgid "Search for remote execution proxy outside of the proxies assigned to the host. If locations or organizations are enabled, the search will be limited to the host's organization or location."
590
- msgstr "Busque un proxy de ejecución remota fuera de los proxy asignados al host. Si las ubicaciones u organizaciones están habilitadas, la búsqueda se limitará a la organización o ubicación del host."
638
+ msgid "Search for remote execution proxy outside of the proxies assigned to the host. The search will be limited to the host's organization and location."
639
+ msgstr ""
591
640
 
592
641
  msgid "Search the host for any proxy with Remote Execution, useful when the host has no subnet or the subnet does not have an execution proxy"
593
642
  msgstr "Busque en el host algún proxy con Ejecución remota, útil cuando el host no tiene subred o cuando la subred no tiene un proxy de ejecución."
@@ -607,8 +656,8 @@ msgstr "Seleccione tantos proxy de ejecución remota como se puedan aplicar a es
607
656
  msgid "Set to distribute over"
608
657
  msgstr "Definir para distribuir sobre"
609
658
 
610
- msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful, when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip."
611
- msgstr "¿Se prefieren las direcciones ip en las interfaces de host por sobre fdqn? Sí resulta útil, cuando DNS no resuelve el fqdns de manera adecuada. Puede anular esto por host al configurar un parámetro llamado remote_execution_connect_by_ip."
659
+ msgid "Should the ip addresses on host interfaces be preferred over the fqdn? It is useful when DNS not resolving the fqdns properly. You may override this per host by setting a parameter called remote_execution_connect_by_ip. This setting only applies to IPv4. When the host has only an IPv6 address on the interface used for remote execution, hostname will be used even if this setting is set to true."
660
+ msgstr ""
612
661
 
613
662
  msgid "Show foreign input set details"
614
663
  msgstr "Mostrar detalles del conjunto de entrada externo"
@@ -679,9 +728,6 @@ msgstr "versión de plantilla"
679
728
  msgid "Template with id '%{id}' was not found"
680
729
  msgstr "No se encontró la plantilla con ID '%{id}'."
681
730
 
682
- msgid "The dynamic query '#{job_invocation.targeting.search_query}' was not resolved yet. The list of hosts to which it would resolve now can be seen"
683
- msgstr ""
684
-
685
731
  msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
686
732
  msgstr "La consulta dinámica '%{query}' aún no se resolvió. La lista de hosts en los que se resolverá ahora se puede ver %{here}."
687
733
 
@@ -783,6 +829,9 @@ msgstr "Tipo de consulta"
783
829
  msgid "Unable to fetch public key"
784
830
  msgstr "No se pudo extraer la llave pública."
785
831
 
832
+ msgid "Unable to remove host from known hosts"
833
+ msgstr ""
834
+
786
835
  msgid "Unable to save template. Correct highlighted errors"
787
836
  msgstr "No se puede guardar plantilla. Corrija los errores resaltados."
788
837