foreman_acd 0.9.4 → 0.9.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 544d3c91bb7090c8c4066a256937514626d263e206f1ab5f01976cbba606f0b6
4
- data.tar.gz: 06a4be069deda3be5e2c26407b4303a8e22aa5d4c1f46179c36d60734ad9d13e
3
+ metadata.gz: '09ab4e9efcf497cbf601a6aa065f7451d7eeabde67ed6b9f256f74e305ac7fd2'
4
+ data.tar.gz: 996d0f4628457e47e2afc8304e43ae4deef0ed4b362d4495ab7e26730448cbd1
5
5
  SHA512:
6
- metadata.gz: fdb3c928f53da13d0d00308d4a9693b07ab62a792c8f866351d4e8ea027e5d9575963f787171a345e5b66eddacd4747faa5be02eb055698d9c4c5e6cfb7a9468
7
- data.tar.gz: 77efce0818807f653dfc726c41f568331dc515b24b0fd3722ce0ec935b8696bfe1de391338f5f8ec04e3e66ee7693f3b88b1daf8239fa89c5ece3885fea3145d
6
+ metadata.gz: 5c011fa3bf0b15c4c6b1a446f960e9cda7b6b9c72ad89776eb921f698d4312424d59e6a7de26fd9c6f9dab3878beae8606559e54617287217a324df8d1f47b9e
7
+ data.tar.gz: ae6eaa22a91d8e100f57095165f09dbcb133fc42deb3201d83f3a32d8698ca685a889aae22984434dba6836e3968920fa7de9303d573dd66bb46f5fc0e70baa2
data/README.md CHANGED
@@ -124,8 +124,7 @@ All Foreman parameters require a value.
124
124
 
125
125
  ## Contributing
126
126
 
127
- Fork and send a Pull Request.
128
- Thanks!
127
+ Fork and send a Pull Request. Thank you.
129
128
 
130
129
  ## Copyright
131
130
 
@@ -5,8 +5,7 @@ module Actions
5
5
  # DeployAllHosts implements a Foreman Task EntryAction
6
6
  class DeployAllHosts < Actions::EntryAction
7
7
  def plan(app_instance, safe_deploy)
8
- action_subject(app_instance, :safe_deploy => safe_deploy)
9
- plan_self(:id => app_instance.id)
8
+ plan_self(:id => app_instance.id, :safe_deploy => safe_deploy)
10
9
  end
11
10
 
12
11
  def run
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Remove old permissons to run the remote execution jobs
4
+ class RemoveOldRexPermissions < ActiveRecord::Migration[6.0]
5
+ def up
6
+ Permission.where(:name => %w[new_remote_execution create_remote_execution]).destroy_all
7
+ end
8
+
9
+ def down
10
+ # The permission will get recreated by seeds
11
+ end
12
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ForemanAcd
4
- VERSION = '0.9.4'
4
+ VERSION = '0.9.7'
5
5
  end
data/package.json CHANGED
@@ -3,81 +3,43 @@
3
3
  "version": "0.9.3",
4
4
  "description": "foreman application centric deployment",
5
5
  "main": "index.js",
6
- "directories": {
7
- "test": "test"
8
- },
9
6
  "peerDependencies": {
10
7
  "@theforeman/vendor": ">= 10.1.0"
11
8
  },
12
9
  "devDependencies": {
13
- "@theforeman/builder": "^10.1.0",
14
- "@theforeman/eslint-plugin-foreman": "^10.1.0",
15
- "@theforeman/test": "^10.1.0",
16
- "@theforeman/vendor-dev": "^10.1.0",
10
+ "@theforeman/builder": ">= 12.0.1",
11
+ "@theforeman/eslint-plugin-foreman": ">= 12.0.1",
12
+ "@theforeman/test": ">= 12.0.1",
13
+ "@theforeman/vendor-dev": ">= 12.0.1",
17
14
  "babel-plugin-transform-class-properties": "^6.24.1",
18
15
  "babel-preset-env": "^1.6.0",
19
16
  "babel-preset-react": "^6.24.1",
17
+ "eslint": "^6.7.2",
20
18
  "jest": "^23.6.0",
21
19
  "jest-prop-type-error": "^1.1.0",
22
20
  "lodash": "^4.17.11",
21
+ "prettier": "^1.19.1",
23
22
  "react-redux-test-utils": "^0.1.1",
24
23
  "sortabular": "^1.5.1",
24
+ "stylelint": "^9.3.0",
25
+ "stylelint-config-standard": "^18.0.0",
25
26
  "table-resolver": "^3.2.0"
26
27
  },
27
28
  "scripts": {
28
- "test": "node node_modules/.bin/jest --no-cache"
29
+ "lint": "tfm-lint --plugin -d *.js,webpack",
30
+ "lint-fix": "tfm-lint --plugin -d *.js,webpack --fix",
31
+ "stylelint": "stylelint webpack/**/*.scss",
32
+ "stylelint-fix": "stylelint webpack/**/*.scss --fix",
33
+ "test": "jest --no-cache"
29
34
  },
30
35
  "repository": {
31
36
  "type": "git",
32
37
  "url": "git+https://github.com/ATIX-AG/foreman_acd.git"
33
38
  },
34
- "author": "",
39
+ "author": "ATIX AG <info@atix.de>",
35
40
  "license": "ISC",
36
41
  "bugs": {
37
- "url": "https://atix.de"
42
+ "url": "https://github.com/ATIX-AG/foreman_acd/issues"
38
43
  },
39
- "homepage": "https://atix.de",
40
- "jest": {
41
- "verbose": true,
42
- "testMatch": [
43
- "**/*.test.js"
44
- ],
45
- "testPathIgnorePatterns": [
46
- ".local",
47
- ".bundle",
48
- "/node_modules/",
49
- "<rootDir>/foreman/"
50
- ],
51
- "moduleDirectories": [
52
- "node_modules",
53
- "webpack"
54
- ],
55
- "testURL": "http://localhost/",
56
- "collectCoverage": true,
57
- "collectCoverageFrom": [
58
- "webpack/**/*.js",
59
- "!webpack/index.js",
60
- "!webpack/test_setup.js",
61
- "!webpack/**/bundle*",
62
- "!webpack/stories/**",
63
- "!webpack/**/*stories.js"
64
- ],
65
- "coverageReporters": [
66
- "lcov"
67
- ],
68
- "moduleNameMapper": {
69
- "^.+\\.(png|gif|css|scss)$": "identity-obj-proxy"
70
- },
71
- "globals": {
72
- "__testing__": true
73
- },
74
- "transform": {
75
- "^.+\\.js$": "babel-jest"
76
- },
77
- "setupFiles": [
78
- "raf/polyfill",
79
- "jest-prop-type-error",
80
- "./webpack/test_setup.js"
81
- ]
82
- }
44
+ "homepage": "https://atix.de"
83
45
  }
@@ -5,26 +5,26 @@
5
5
  }
6
6
 
7
7
  .deploy_status_head {
8
- float:left;
9
- width:25%;
10
- height:10%;
8
+ float: left;
9
+ width: 25%;
10
+ height: 10%;
11
11
  }
12
12
 
13
13
  .deploy_status_content {
14
- float:left;
15
- width:75%;
16
- height:10%;
14
+ float: left;
15
+ width: 75%;
16
+ height: 10%;
17
17
  }
18
18
 
19
19
  .deploy_report_hosts {
20
- float:left;
21
- width:25%;
22
- height:100%;
20
+ float: left;
21
+ width: 25%;
22
+ height: 100%;
23
23
  }
24
24
 
25
25
  .deploy_report_tasks {
26
- float:left;
27
- width:75%;
26
+ float: left;
27
+ width: 75%;
28
28
  min-height: 300px;
29
29
  background-color: #ecf9fe;
30
30
  padding: 10px;
@@ -1,11 +1,11 @@
1
1
  @import '~@theforeman/vendor/scss/variables';
2
2
 
3
3
  .add_existing_hosts_modal {
4
- margin-top: 0;
5
- margin-bottom: 0;
6
- height: 100%;
7
- width: 80%;
8
- max-width: none !important;
4
+ margin-top: 0;
5
+ margin-bottom: 0;
6
+ height: 100%;
7
+ width: 80%;
8
+ max-width: none !important;
9
9
  }
10
10
 
11
11
  .row {
@@ -1,17 +1,17 @@
1
1
  @import '~@theforeman/vendor/scss/variables';
2
2
 
3
3
  .param_selection_modal {
4
- margin-top: 0;
5
- margin-bottom: 0;
6
- height: 100%;
7
- width: 80%;
8
- max-width: none !important;
4
+ margin-top: 0;
5
+ margin-bottom: 0;
6
+ height: 100%;
7
+ width: 80%;
8
+ max-width: none !important;
9
9
  }
10
10
 
11
11
  .complex_data_modal {
12
- margin-top: 0;
13
- margin-bottom: 0;
14
- height: 80%;
15
- width: 40%;
16
- max-width: none !important;
12
+ margin-top: 0;
13
+ margin-bottom: 0;
14
+ height: 80%;
15
+ width: 40%;
16
+ max-width: none !important;
17
17
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_acd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - ATIX AG
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-16 00:00:00.000000000 Z
11
+ date: 2024-04-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -44,28 +44,28 @@ dependencies:
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 3.3.0
47
+ version: '8.0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: 3.3.0
54
+ version: '8.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: foreman-tasks
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '0.10'
61
+ version: '7.0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '0.10'
68
+ version: '7.0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: git
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -173,6 +173,7 @@ files:
173
173
  - db/migrate/20210503122809_add_git_url_to_ansible_playbooks.rb
174
174
  - db/migrate/20210818125913_add_is_existing_host_to_foreman_host.rb
175
175
  - db/migrate/20210902110645_add_initial_configure_task.rb
176
+ - db/migrate/20240326143045_remove_old_rex_permissions.rb
176
177
  - db/seeds.d/62_acd_proxy_feature.rb
177
178
  - db/seeds.d/75-job_templates.rb
178
179
  - lib/foreman_acd.rb
@@ -181,9 +182,7 @@ files:
181
182
  - lib/foreman_acd/version.rb
182
183
  - lib/tasks/foreman_acd_tasks.rake
183
184
  - locale/Makefile
184
- - locale/en/foreman_acd.edit.po
185
185
  - locale/en/foreman_acd.po
186
- - locale/en/foreman_acd.po.time_stamp
187
186
  - locale/foreman_acd.pot
188
187
  - locale/gemspec.rb
189
188
  - package.json
@@ -369,31 +368,33 @@ require_paths:
369
368
  - lib
370
369
  required_ruby_version: !ruby/object:Gem::Requirement
371
370
  requirements:
372
- - - "~>"
371
+ - - ">="
372
+ - !ruby/object:Gem::Version
373
+ version: '2.7'
374
+ - - "<"
373
375
  - !ruby/object:Gem::Version
374
- version: '2.5'
376
+ version: '4'
375
377
  required_rubygems_version: !ruby/object:Gem::Requirement
376
378
  requirements:
377
379
  - - ">="
378
380
  - !ruby/object:Gem::Version
379
381
  version: '0'
380
382
  requirements: []
381
- rubyforge_project:
382
- rubygems_version: 2.7.6
383
+ rubygems_version: 3.3.26
383
384
  signing_key:
384
385
  specification_version: 4
385
386
  summary: Foreman plugin to provide application centric deployment and self service
386
387
  portal
387
388
  test_files:
389
+ - test/controllers/ansible_playbooks_controller_test.rb
390
+ - test/controllers/app_definitions_controller_test.rb
391
+ - test/controllers/app_instances_controller_test.rb
392
+ - test/controllers/ui_acd_controller_test.rb
388
393
  - test/factories/foreman_acd_factories.rb
389
- - test/test_plugin_helper.rb
394
+ - test/models/acd_provider_test.rb
390
395
  - test/models/ansible_playbook_test.rb
396
+ - test/models/app_definition_test.rb
391
397
  - test/models/app_instance_test.rb
392
398
  - test/models/concerns/host_extensions_test.rb
393
- - test/models/app_definition_test.rb
394
- - test/models/acd_provider_test.rb
395
399
  - test/models/foreman_host_test.rb
396
- - test/controllers/ui_acd_controller_test.rb
397
- - test/controllers/app_definitions_controller_test.rb
398
- - test/controllers/app_instances_controller_test.rb
399
- - test/controllers/ansible_playbooks_controller_test.rb
400
+ - test/test_plugin_helper.rb
@@ -1,326 +0,0 @@
1
- # foreman_acd
2
- #
3
- # This file is distributed under the same license as foreman_acd.
4
- #
5
- msgid ""
6
- msgstr ""
7
- "Project-Id-Version: version 0.0.1\n"
8
- "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2021-02-05 21:21+0000\n"
10
- "PO-Revision-Date: 2014-08-20 08:54+0100\n"
11
- "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
12
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
13
- "Language: \n"
14
- "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=UTF-8\n"
16
- "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
-
19
- #: ../app/controllers/foreman_acd/ansible_playbooks_controller.rb:22
20
- msgid ""
21
- "Successfully created %s. You need to press the \"Import groups\" button\n"
22
- " before this ansible playbook can be used in App Definitions!"
23
- msgstr ""
24
-
25
- #: ../app/controllers/foreman_acd/ansible_playbooks_controller.rb:116
26
- msgid "Successfully loaded ansible group variables from %s"
27
- msgstr ""
28
-
29
- #: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:15
30
- msgid "Show ansible playbook"
31
- msgstr ""
32
-
33
- #: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:19
34
- msgid "List ansible playbooks"
35
- msgstr ""
36
-
37
- #: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:35
38
- msgid "Create a ansible playbook"
39
- msgstr ""
40
-
41
- #: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:42
42
- msgid "Deletes ansible playbook"
43
- msgstr ""
44
-
45
- #: ../app/controllers/foreman_acd/api/v2/ansible_playbooks_controller.rb:48
46
- msgid "Grab ansible playbook"
47
- msgstr ""
48
-
49
- #: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:12
50
- msgid "Show application definition"
51
- msgstr ""
52
-
53
- #: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:16
54
- msgid "List application definitions"
55
- msgstr ""
56
-
57
- #: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:32
58
- msgid "Create a application definition"
59
- msgstr ""
60
-
61
- #: ../app/controllers/foreman_acd/api/v2/app_definitions_controller.rb:39
62
- msgid "Deletes application definition"
63
- msgstr ""
64
-
65
- #: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:12
66
- msgid "Show application instance"
67
- msgstr ""
68
-
69
- #: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:18
70
- msgid "List application instances"
71
- msgstr ""
72
-
73
- #: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:39
74
- msgid "Create a application instance"
75
- msgstr ""
76
-
77
- #: ../app/controllers/foreman_acd/api/v2/app_instances_controller.rb:46
78
- msgid "Deletes application instance"
79
- msgstr ""
80
-
81
- #: ../app/models/foreman_acd/ansible_playbook.rb:37
82
- msgid "Ansible playbook"
83
- msgstr ""
84
-
85
- #: ../app/models/foreman_acd/app_definition.rb:37
86
- msgid "App Definition"
87
- msgstr ""
88
-
89
- #: ../app/models/foreman_acd/app_instance.rb:19
90
- msgid "App Instance"
91
- msgstr ""
92
-
93
- #: ../app/views/foreman_acd/ansible_playbooks/_form.html.erb:5
94
- msgid "Ansible playbooks"
95
- msgstr ""
96
-
97
- #: ../app/views/foreman_acd/ansible_playbooks/_form.html.erb:7 ../app/views/foreman_acd/app_definitions/_form.html.erb:34
98
- msgid "Locations"
99
- msgstr ""
100
-
101
- #: ../app/views/foreman_acd/ansible_playbooks/_form.html.erb:10 ../app/views/foreman_acd/app_definitions/_form.html.erb:37
102
- msgid "Organizations"
103
- msgstr ""
104
-
105
- #: ../app/views/foreman_acd/ansible_playbooks/edit.html.erb:4 ../app/views/foreman_acd/ansible_playbooks/index.html.erb:1
106
- msgid "Ansible Playbooks"
107
- msgstr ""
108
-
109
- #: ../app/views/foreman_acd/ansible_playbooks/edit.html.erb:10
110
- msgid "Edit Ansible Playbook %s"
111
- msgstr ""
112
-
113
- #: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:4 ../app/views/foreman_acd/ansible_playbooks/new.html.erb:1
114
- msgid "New Ansible Playbook"
115
- msgstr ""
116
-
117
- #: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:9
118
- msgid "AnsiblePlaybook|Name"
119
- msgstr ""
120
-
121
- #: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:10 ../app/views/foreman_acd/app_definitions/index.html.erb:11 ../app/views/foreman_acd/app_instances/index.html.erb:9 ../webpack/components/ParameterSelection/ParameterSelectionActions.js:97
122
- msgid "Description"
123
- msgstr ""
124
-
125
- #: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:19
126
- msgid "Import groups"
127
- msgstr ""
128
-
129
- #: ../app/views/foreman_acd/ansible_playbooks/index.html.erb:21 ../app/views/foreman_acd/app_definitions/index.html.erb:21 ../app/views/foreman_acd/app_instances/index.html.erb:27
130
- msgid "Delete %s?"
131
- msgstr ""
132
-
133
- #: ../app/views/foreman_acd/app_definitions/_form.html.erb:32 ../app/views/foreman_acd/app_definitions/import.html.erb:6 ../app/views/foreman_acd/app_definitions/index.html.erb:1
134
- msgid "Application Definitions"
135
- msgstr ""
136
-
137
- #: ../app/views/foreman_acd/app_definitions/edit.html.erb:4
138
- msgid "App Definitions"
139
- msgstr ""
140
-
141
- #: ../app/views/foreman_acd/app_definitions/edit.html.erb:11
142
- msgid "Edit Application Definition %s"
143
- msgstr ""
144
-
145
- #: ../app/views/foreman_acd/app_definitions/import.html.erb:1
146
- msgid "Import Application Definition"
147
- msgstr ""
148
-
149
- #: ../app/views/foreman_acd/app_definitions/import.html.erb:13
150
- msgid "Application Definition file"
151
- msgstr ""
152
-
153
- #: ../app/views/foreman_acd/app_definitions/index.html.erb:4 ../app/views/foreman_acd/app_definitions/new.html.erb:1
154
- msgid "New Application Definition"
155
- msgstr ""
156
-
157
- #: ../app/views/foreman_acd/app_definitions/index.html.erb:5
158
- msgid "Import"
159
- msgstr ""
160
-
161
- #: ../app/views/foreman_acd/app_definitions/index.html.erb:10
162
- msgid "AppDefinition|Name"
163
- msgstr ""
164
-
165
- #: ../app/views/foreman_acd/app_definitions/index.html.erb:22
166
- msgid "Export"
167
- msgstr ""
168
-
169
- #: ../app/views/foreman_acd/app_instances/_form.html.erb:32 ../app/views/foreman_acd/app_instances/index.html.erb:1
170
- msgid "Application Instances"
171
- msgstr ""
172
-
173
- #: ../app/views/foreman_acd/app_instances/edit.html.erb:4
174
- msgid "App Instances"
175
- msgstr ""
176
-
177
- #: ../app/views/foreman_acd/app_instances/edit.html.erb:11
178
- msgid "Edit Application Instance %s"
179
- msgstr ""
180
-
181
- #: ../app/views/foreman_acd/app_instances/index.html.erb:3 ../app/views/foreman_acd/app_instances/new.html.erb:1
182
- msgid "New Application Instance"
183
- msgstr ""
184
-
185
- #: ../app/views/foreman_acd/app_instances/index.html.erb:7
186
- msgid "AppInstance|Name"
187
- msgstr ""
188
-
189
- #: ../app/views/foreman_acd/app_instances/index.html.erb:8
190
- msgid "Application"
191
- msgstr ""
192
-
193
- #: ../app/views/foreman_acd/app_instances/index.html.erb:18
194
- msgid "Deploy"
195
- msgstr ""
196
-
197
- #: ../app/views/foreman_acd/app_instances/index.html.erb:20
198
- msgid "Run Playbook"
199
- msgstr ""
200
-
201
- #: ../app/views/foreman_acd/app_instances/index.html.erb:22
202
- msgid "Run Playbook - customize first"
203
- msgstr ""
204
-
205
- #: ../app/views/foreman_acd/app_instances/index.html.erb:24
206
- msgid "Report"
207
- msgstr ""
208
-
209
- #: ../lib/foreman_acd/plugin.rb:9
210
- msgid "Applications"
211
- msgstr ""
212
-
213
- #: ../lib/foreman_acd/plugin.rb:145
214
- msgid "Run playbook for ACD"
215
- msgstr ""
216
-
217
- #: ../lib/foreman_acd/plugin.rb:147
218
- msgid "Run an Ansible playbook to configure ACD application"
219
- msgstr ""
220
-
221
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:74 ../webpack/components/ApplicationInstance/ApplicationInstance.js:114
222
- msgid "edit entry"
223
- msgstr ""
224
-
225
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:81 ../webpack/components/ApplicationInstance/ApplicationInstance.js:121
226
- msgid "change parameters"
227
- msgstr ""
228
-
229
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:88 ../webpack/components/ApplicationInstance/ApplicationInstance.js:128
230
- msgid "change ansible variables"
231
- msgstr ""
232
-
233
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:102 ../webpack/components/ApplicationInstance/ApplicationInstance.js:142
234
- msgid "edit"
235
- msgstr ""
236
-
237
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:106 ../webpack/components/ApplicationInstance/ApplicationInstance.js:146
238
- msgid "settings"
239
- msgstr ""
240
-
241
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:277 ../webpack/components/ApplicationInstance/ApplicationInstance.js:324
242
- msgid "change ansible variables for 'all'"
243
- msgstr ""
244
-
245
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:285
246
- msgid "Foreman Parameter definition for Application Definition"
247
- msgstr ""
248
-
249
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:303 ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:330 ../webpack/components/ApplicationInstance/ApplicationInstance.js:350 ../webpack/components/ApplicationInstance/ApplicationInstance.js:377
250
- msgid "Save"
251
- msgstr ""
252
-
253
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:304 ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:331 ../webpack/components/ApplicationInstance/ApplicationInstance.js:351 ../webpack/components/ApplicationInstance/ApplicationInstance.js:378
254
- msgid "Cancel"
255
- msgstr ""
256
-
257
- #: ../webpack/components/ApplicationDefinition/ApplicationDefinition.js:313
258
- msgid "Ansible variables for Application Definition"
259
- msgstr ""
260
-
261
- #: ../webpack/components/ApplicationInstance/ApplicationInstance.js:53
262
- msgid ""
263
- "For some hosts the values for some parameters are missing. Check the values for these hosts:\n"
264
- msgstr ""
265
-
266
- #: ../webpack/components/ApplicationInstance/ApplicationInstance.js:71
267
- msgid "Unachieved service counts:"
268
- msgstr ""
269
-
270
- #: ../webpack/components/ApplicationInstance/ApplicationInstance.js:75
271
- msgid ""
272
- "- service ${s.name} expects at ${s.minCount} least configured hosts\n"
273
- msgstr ""
274
-
275
- #: ../webpack/components/ApplicationInstance/ApplicationInstance.js:79
276
- msgid ""
277
- "- service ${s.name} expects no more than ${s.axCount} configured hosts\n"
278
- msgstr ""
279
-
280
- #: ../webpack/components/ApplicationInstance/ApplicationInstance.js:332
281
- msgid "Foreman Parameter specification for Application Instance"
282
- msgstr ""
283
-
284
- #: ../webpack/components/ApplicationInstance/ApplicationInstance.js:360
285
- msgid "Ansible group variables for Application Instance"
286
- msgstr ""
287
-
288
- #: ../webpack/components/ApplicationInstance/components/Service.js:12
289
- msgid "Min/Max"
290
- msgstr ""
291
-
292
- #: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:63
293
- msgid "Value"
294
- msgstr ""
295
-
296
- #: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:65
297
- msgid "Default value"
298
- msgstr ""
299
-
300
- #: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:78
301
- msgid "Name"
302
- msgstr ""
303
-
304
- #: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:120
305
- msgid "Type"
306
- msgstr ""
307
-
308
- #: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:161
309
- msgid "Actions"
310
- msgstr ""
311
-
312
- #: ../webpack/components/ParameterSelection/ParameterSelectionActions.js:188
313
- msgid "Failed to fetch data from server."
314
- msgstr ""
315
-
316
- #: ../webpack/components/common/DeleteTableEntry.js:24
317
- msgid "Are you sure you wish to delete this item?"
318
- msgstr ""
319
-
320
- #: ../webpack/components/common/DeleteTableEntry.js:26
321
- msgid "Delete entry"
322
- msgstr ""
323
-
324
- #: gemspec.rb:2
325
- msgid "TODO: Description of ForemanAcd."
326
- msgstr ""
File without changes