-
Notifications
You must be signed in to change notification settings - Fork 4
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
v1 from main #23
Merged
Merged
v1 from main #23
Conversation
This file contains 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
Contributor
mbaldessari
commented
Nov 11, 2024
- Add jsonschema CI job
- Fix typo in README.md
- Boolean defaults cannot be strings
- Use --fill-defaults when running json schema check
- Fix secret parsing, when there is no secret in secret yaml file
- Move null check to _get_secrets
- Add unit tests for empty secret logic
- Bump version number
- Rremove links with - in the name because the usage of dash is not supported to run playbook names in collections
We test a few values secret files against the json schema
Json schema CI + typo
This will fix the edge case when there is an empty list ([]) or no secret in the secret values file for a pattern, the validation and the parsing would fail the module. Now it only throws a warning for both validation and parsing.
The check for "None" is better placed inside the get_secrets function, with this, get_secrets will always return a list, either empty list, or the list with the secrets from the yaml. Changed checks accordingly. Changed default get to be an empty list if the "secret" key is not present in the secret values file.
Added check for None type as well, in case the module is used witout from_yaml filter (like in unit tests)
Fix secret parsing, when there is no secret in secret yaml file
…ported to run playbook names in collections
Remove links with - in the name because the usage of dash is not supported by ansible
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.