FEATURE: connect to existing Prunner system service#12
Merged
skurfuerst merged 4 commits intoFlowpack:mainfrom Nov 14, 2023
Merged
FEATURE: connect to existing Prunner system service#12skurfuerst merged 4 commits intoFlowpack:mainfrom
skurfuerst merged 4 commits intoFlowpack:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Features
The new features ease to use a shared Prunner for several Neos installations. This allows to configure the maximal number of concurrent pipelines for an entire server.
Flowpack.Prunner.configFile to set path to .prunner.yml
The Prunner config file name containing the JWT secret not longer needs to be .prunner.yml. Now you can override the file name in the Settings.yaml
Existing configurations using directory or jwtSecret are still supported.
Skip Prunner download
In the Composer post-install hook, the Prunner is installed. Now you can skip the download with the following config in the composer.json:
Prunner Client has more Getters
For easier use I added getter functions, namely:
Jobs#waitingJobs#completedJobs#successfulJobs#canceledJobs#erroredJobs#filterJobs#getArrayPipelines#getArrayBugfixes
The type annotation of
Job#getIdist now correct.