-
Notifications
You must be signed in to change notification settings - Fork 3
Use args for CLI parameters #244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
philipp94831
wants to merge
29
commits into
master
Choose a base branch
from
feature/args
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
3c8880c
Separate CLI and application (#207)
philipp94831 1ee2c3c
Use args for CLI parameters
philipp94831 e38af13
Use args for CLI parameters
philipp94831 92c9d52
Use args for CLI parameters
philipp94831 632b7fe
Remove guava dependency (#237)
philipp94831 be8ffc8
Use KAFKA_ as prefix for environment Kafka config (#209)
philipp94831 8dc843c
Add HostInfo to ImprovedStreamsConfig (#230)
9b67bc7
Remove log4j dependency and debug parameter (#238)
philipp94831 cc19d5e
Add default serialization config to apps (#239)
philipp94831 1a4b565
Rename streams section to kafka in Helm charts (#241)
philipp94831 3a4af0b
Rename extra topics to labeled topics (#240)
philipp94831 ecf41c8
Rename `--brokers` to `--bootstrap-servers` (#242)
philipp94831 878e22b
Add CLI parameter to specify streams application ID (#243)
philipp94831 c347337
Remove unnecessary schema registry configurations in tests (#248)
philipp94831 957e4c1
Replace Guava usages (#246)
philipp94831 a88a343
Rename TestTopologyFactory (#249)
philipp94831 d1bfa89
Make CleanUpRunner closeable (#247)
philipp94831 8b34869
Rename Streams section in Helm chart docs (#252)
philipp94831 935b61d
Fix Sonarqube issues (#253)
philipp94831 6c1db53
Validate autoscaling mandatory fields when it is enabled (#254)
8a75197
Validate persistence mandatory chart values (persistence.size) (#255)
49e7122
Add hook to prepare running of app (#256)
philipp94831 a41aa8a
Pre-bump version to 3.0.1-SNAPSHOT (#257)
philipp94831 b4a334b
Merge branch 'v3' into feature/args
philipp94831 eba2013
Merge branch 'tmp/v3-master' into feature/args
philipp94831 aabf180
Merge remote-tracking branch 'origin/master' into feature/args
philipp94831 0c52dae
Update
philipp94831 8c7e40a
Update
philipp94831 6080af7
Update
philipp94831 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added this in order to also pass parameters that are not just key-value pairs (e.g. flags like
--large-messages). However, the map config is more suitable if one needs to merge multiple value files because maps do get merged and params can be overriden while lists are fully replaced. Should we rename the configs maybe? args.map and args.list?