agentless-catalog-executor 0.9.0 → 0.9.1
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 +5 -5
- data/CHANGELOG.md +11 -0
- data/README.md +5 -5
- data/lib/ace/transport_app.rb +1 -1
- data/lib/ace/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: d791e5e1528ffc2b85e6040851de75ef8618d918
|
|
4
|
+
data.tar.gz: 552781fb8ab839d69ac6c51a0d1e6d602cb317e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4fef3a93cdb37b5ab0d6604f2e90af25413957f5323913b11fa9d19629e1e4b9f43c7fd4a55b453100cf127d295c4b611dac99b04781cb8be8aafef1a3b88e75
|
|
7
|
+
data.tar.gz: abd5923765bf1bc755312655fc181b00ac7e61c7029d74ac1d48bf96b7bd3a45cb89b0a6cac9a75b62866e190e00ec090e433a600cb74eafffd72211ef1177e1
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All significant changes to this repo will be summarized in this file.
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## [v0.9.1](https://github.com/puppetlabs/ace/tree/v0.9.1) (2019-04-16)
|
|
7
|
+
[Full Changelog](https://github.com/puppetlabs/ace/compare/v0.9.0...v0.9.1)
|
|
8
|
+
|
|
9
|
+
**Fixed bugs:**
|
|
10
|
+
|
|
11
|
+
- \(maint\) remove load\_config parameter [\#34](https://github.com/puppetlabs/ace/pull/34) ([da-ar](https://github.com/da-ar))
|
|
12
|
+
|
|
13
|
+
**Merged pull requests:**
|
|
14
|
+
|
|
15
|
+
- \(FM-7927\) Docs review [\#35](https://github.com/puppetlabs/ace/pull/35) ([clairecadman](https://github.com/clairecadman))
|
|
16
|
+
|
|
6
17
|
## [v0.9.0](https://github.com/puppetlabs/ace/tree/v0.9.0) (2019-04-16)
|
|
7
18
|
**Implemented enhancements:**
|
|
8
19
|
|
data/README.md
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Installation
|
|
4
4
|
|
|
5
|
-
ACE is
|
|
5
|
+
The Agentless Catalog Executor (ACE) is built-in to Puppet Enterprise (PE) as pe-ace-server.
|
|
6
6
|
|
|
7
7
|
## Usage
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
To spin up an instance for development, run the puma server:
|
|
10
10
|
|
|
11
11
|
```
|
|
12
12
|
ACE_CONF=config/local.conf bundle exec puma -C config/transport_tasks_config.rb
|
|
@@ -14,10 +14,10 @@ ACE_CONF=config/local.conf bundle exec puma -C config/transport_tasks_config.rb
|
|
|
14
14
|
|
|
15
15
|
## Development
|
|
16
16
|
|
|
17
|
-
As ACE is dependent on
|
|
17
|
+
As ACE is dependent on Puppet Server, there is a docker-compose file in the `spec/` directory which we advise you run before the ACE service to ensure that the certs and keys are valid. For more information, see the [docker documentation](developer-docs/docker).
|
|
18
18
|
|
|
19
|
-
To release a new version, update the version number in `version.rb
|
|
19
|
+
To release a new version, update the version number in `version.rb` and run `bundle exec rake release`, which creates a git tag for the version, pushes git commits and tags, and pushes the `.gem` file to [rubygems.org](https://rubygems.org). Released gems are eventually consumed by [ace-vanagon](https://github.com/puppetlabs/ace-vanagon) and promoted into PE.
|
|
20
20
|
|
|
21
21
|
## Contributing
|
|
22
22
|
|
|
23
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/puppetlabs/ace. See the `.travis.yml` file for checks to run on your code before submitting.
|
|
23
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/puppetlabs/ace. See the `.travis.yml` file for which checks to run on your code before submitting. Always include tests with your changes.
|
data/lib/ace/transport_app.rb
CHANGED
|
@@ -19,7 +19,7 @@ module ACE
|
|
|
19
19
|
class TransportApp < Sinatra::Base
|
|
20
20
|
def initialize(config = nil)
|
|
21
21
|
@config = config
|
|
22
|
-
@executor = Bolt::Executor.new(0
|
|
22
|
+
@executor = Bolt::Executor.new(0)
|
|
23
23
|
tasks_cache_dir = File.join(@config['cache-dir'], 'tasks')
|
|
24
24
|
@file_cache = BoltServer::FileCache.new(@config.data.merge('cache-dir' => tasks_cache_dir)).setup
|
|
25
25
|
environments_cache_dir = File.join(@config['cache-dir'], 'environments')
|
data/lib/ace/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: agentless-catalog-executor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Schmitt
|
|
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
247
247
|
version: '0'
|
|
248
248
|
requirements: []
|
|
249
249
|
rubyforge_project:
|
|
250
|
-
rubygems_version: 2.
|
|
250
|
+
rubygems_version: 2.6.12
|
|
251
251
|
signing_key:
|
|
252
252
|
specification_version: 4
|
|
253
253
|
summary: ACE lets you run remote tasks and catalogs using puppet and bolt.
|