foreman_remote_execution 2.0.10 → 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/.babelrc.js +3 -0
- data/.gitignore +1 -0
- data/app/models/foreign_input_set.rb +1 -1
- data/app/models/job_invocation.rb +1 -3
- data/app/views/api/v2/job_invocations/main.json.rabl +1 -4
- data/app/views/job_invocations/_card_user_input.html.erb +1 -1
- data/app/views/job_invocations/_form.html.erb +1 -1
- data/app/views/job_invocations/_tab_hosts.html.erb +2 -2
- data/app/views/job_invocations/_user_input.html.erb +1 -1
- data/extra/cockpit/foreman-cockpit-session +1 -1
- data/lib/foreman_remote_execution/engine.rb +1 -1
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/package.json +8 -10
- data/webpack/test_setup.js +2 -1
- metadata +3 -3
- data/.babelrc +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8331c21b2ae7b9448ecd1d8aa077d68f2ee8d3a8225caafccd3e090dd5234451
|
4
|
+
data.tar.gz: 13b90484092acd1f0f97959b46490498eb27551597ad36e38e9f539e80c92db9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e85339c30ba160c77796e360258663b4d52af4213f1dcdf84b16356cf2ff5cd83e2672c978eba29f647f441235cc94bf110783be665860351ea8d10ecc3d117d
|
7
|
+
data.tar.gz: c8cb6c2dfe3beca8cbfdc8eec8f93c5bebdb3570623ea4ad4f71975a489db8bbb2d5afc8046f485cf64cb6a79cd9dfdfbbedcb490384611ab5a435e154b30f05
|
data/.babelrc.js
ADDED
data/.gitignore
CHANGED
@@ -16,7 +16,7 @@ class ForeignInputSet < ApplicationRecord
|
|
16
16
|
|
17
17
|
def inputs(templates_stack = [])
|
18
18
|
return [] unless target_template
|
19
|
-
if templates_stack.include?(target_template)
|
19
|
+
if templates_stack.include?(target_template)
|
20
20
|
raise CircularDependencyError.new(N_("Circular dependency detected in foreign input set '%{template}' -> '%{target_template}'. Templates stack: %{templates_stack}"),
|
21
21
|
:template => template.name, :target_template => target_template.name, :templates_stack => templates_stack.map(&:name).inspect)
|
22
22
|
end
|
@@ -206,9 +206,7 @@ class JobInvocation < ApplicationRecord
|
|
206
206
|
template_invocation = pattern_template_invocations.first
|
207
207
|
hash_base = Hash.new { |hash, key| hash[key] = "%{#{key}}" }
|
208
208
|
input_hash = template_invocation.input_values.reduce(hash_base) do |h, v|
|
209
|
-
|
210
|
-
value = '*' * 3 if v.template_input.respond_to?(:hidden_value) && v.template_input.hidden_value?
|
211
|
-
h.update(v.template_input.name => value)
|
209
|
+
h.update(v.template_input.name => v.value)
|
212
210
|
end
|
213
211
|
input_hash.update(:job_category => job_category)
|
214
212
|
input_hash.update(:template_name => template_invocation.template.name)
|
@@ -31,9 +31,6 @@ end
|
|
31
31
|
child :template_invocations do
|
32
32
|
attributes :template_id, :template_name
|
33
33
|
child :input_values do
|
34
|
-
attributes :template_input_name, :template_input_id
|
35
|
-
node :value do |iv|
|
36
|
-
iv.template_input.respond_to?(:hidden_value) && iv.template_input.hidden_value? ? '*' * 5 : iv.value
|
37
|
-
end
|
34
|
+
attributes :template_input_name, :template_input_id, :value
|
38
35
|
end
|
39
36
|
end
|
@@ -8,7 +8,7 @@
|
|
8
8
|
<p>
|
9
9
|
<ul>
|
10
10
|
<% template_invocation.input_values.joins(:template_input).each do |input_value| %>
|
11
|
-
<li><b><%= input_value.template_input.name %></b>: <%=
|
11
|
+
<li><b><%= input_value.template_input.name %></b>: <%= trunc_with_tooltip(input_value.value, 255) %></li>
|
12
12
|
<% end %>
|
13
13
|
</ul>
|
14
14
|
</p>
|
@@ -33,7 +33,7 @@
|
|
33
33
|
<% end %>
|
34
34
|
</span>
|
35
35
|
<%= selectable_f targeting_fields, :bookmark_id, @composer.available_bookmarks.map { |b| [b.name, b.id] }, :selected => @composer.targeting.bookmark_id, :include_blank => true %>
|
36
|
-
<%=
|
36
|
+
<%= autocomplete_f targeting_fields, :search_query, :search_query => @composer.displayed_search_query, :full_path => auto_complete_search_hosts_path %>
|
37
37
|
|
38
38
|
<div class="form-group ">
|
39
39
|
<label class="col-md-2 control-label"><%= _('Resolves to') %></label>
|
@@ -1,9 +1,9 @@
|
|
1
1
|
<% if job_invocation.resolved? %>
|
2
|
-
<%=
|
2
|
+
<%= form_with url: job_invocation_path(job_invocation), method: "get", id: "search-form" do |f| %>
|
3
3
|
<div class="row">
|
4
4
|
<div class="title_filter col-md-6">
|
5
5
|
<div class="input-group">
|
6
|
-
<%=
|
6
|
+
<%= autocomplete_f(f, :search, value: params[:search].try(:squeeze, " "), placeholder: _("Filter") + ' ...', path: hosts_path, only_input: true) %>
|
7
7
|
<span class="input-group-btn">
|
8
8
|
<button class="btn btn-default" type="submit">
|
9
9
|
<%= icon_text('search', content_tag(:span, _('Search'), :class => 'hidden-xs', :kind => 'fa')) %>
|
@@ -12,7 +12,7 @@
|
|
12
12
|
<% template_invocation.input_values.joins(:template_input).each do |input_value| %>
|
13
13
|
<tr>
|
14
14
|
<td><b><%= input_value.template_input.name %></b></td>
|
15
|
-
<td><%= input_value.
|
15
|
+
<td><%= input_value.value %></td>
|
16
16
|
</tr>
|
17
17
|
<% end %>
|
18
18
|
</tbody>
|
@@ -26,7 +26,7 @@ end
|
|
26
26
|
|
27
27
|
def read_settings
|
28
28
|
settings_path = ENV["FOREMAN_COCKPIT_SETTINGS"] || "/etc/foreman-cockpit/settings.yml"
|
29
|
-
settings = YAML.safe_load(File.read(settings_path)
|
29
|
+
settings = YAML.safe_load(File.read(settings_path))
|
30
30
|
LOG.level = Logger.const_get(settings.fetch(:log_level, "INFO"))
|
31
31
|
LOG.info("Running foreman-cockpit-session with settings from #{settings_path}:\n#{settings.inspect}")
|
32
32
|
settings
|
@@ -44,7 +44,7 @@ module ForemanRemoteExecution
|
|
44
44
|
|
45
45
|
initializer 'foreman_remote_execution.register_plugin', before: :finisher_hook do |_app|
|
46
46
|
Foreman::Plugin.register :foreman_remote_execution do
|
47
|
-
requires_foreman '>= 1.
|
47
|
+
requires_foreman '>= 1.25'
|
48
48
|
|
49
49
|
apipie_documented_controllers ["#{ForemanRemoteExecution::Engine.root}/app/controllers/api/v2/*.rb"]
|
50
50
|
|
data/package.json
CHANGED
@@ -31,14 +31,12 @@
|
|
31
31
|
"url": "http://projects.theforeman.org/projects/foreman_remote_execution/issues"
|
32
32
|
},
|
33
33
|
"devDependencies": {
|
34
|
-
"@
|
35
|
-
"
|
36
|
-
"
|
37
|
-
"
|
38
|
-
"babel-
|
39
|
-
"babel-
|
40
|
-
"babel-preset-env": "^1.6.0",
|
41
|
-
"babel-preset-react": "^6.24.1",
|
34
|
+
"@babel/core": "^7.7.0",
|
35
|
+
"@theforeman/env": "^3.3.2",
|
36
|
+
"@theforeman/builder": "^3.3.2",
|
37
|
+
"@theforeman/vendor-dev": "^3.3.2",
|
38
|
+
"babel-eslint": "^10.0.0",
|
39
|
+
"babel-jest": "^24.9.0",
|
42
40
|
"enzyme": "^3.2.0",
|
43
41
|
"enzyme-adapter-react-16": "^1.1.0",
|
44
42
|
"enzyme-to-json": "^3.1.2",
|
@@ -48,9 +46,9 @@
|
|
48
46
|
"eslint-plugin-jest": "^21.2.0",
|
49
47
|
"eslint-plugin-jsx-a11y": "^6.0.2",
|
50
48
|
"eslint-plugin-react": "^7.4.0",
|
51
|
-
"jest": "^
|
49
|
+
"jest": "^24.9.0"
|
52
50
|
},
|
53
51
|
"dependencies": {
|
54
|
-
"@theforeman/vendor": "^
|
52
|
+
"@theforeman/vendor": "^3.3.2"
|
55
53
|
}
|
56
54
|
}
|
data/webpack/test_setup.js
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_remote_execution
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Foreman Remote Execution team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-12-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: deface
|
@@ -130,7 +130,7 @@ extra_rdoc_files:
|
|
130
130
|
- README.md
|
131
131
|
- LICENSE
|
132
132
|
files:
|
133
|
-
- ".babelrc"
|
133
|
+
- ".babelrc.js"
|
134
134
|
- ".eslintignore"
|
135
135
|
- ".eslintrc"
|
136
136
|
- ".gitignore"
|
data/.babelrc
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"presets": ["env", "react"],
|
3
|
-
"plugins": [
|
4
|
-
"transform-class-properties",
|
5
|
-
"transform-object-rest-spread",
|
6
|
-
"transform-object-assign"
|
7
|
-
],
|
8
|
-
"env": {
|
9
|
-
"test": {
|
10
|
-
"presets": ["@theforeman/vendor-dev/babel.preset.js"]
|
11
|
-
},
|
12
|
-
"storybook": {
|
13
|
-
"presets": ["@theforeman/vendor-dev/babel.preset.js"]
|
14
|
-
}
|
15
|
-
}
|
16
|
-
}
|