-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: add metadata to ytt steps #119
Merged
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
This enables ytt rendering to be aware of the application. e.g. create a namespace based on the application name.
Zebradil
reviewed
Oct 29, 2023
Co-authored-by: German Lashevich <german.lashevich@gmail.com>
Test was failing as myks.context was passed to rendering. As the data-schema was not included this failed. The output is way longer with data-schema, therefore only a sub string check is performed.
Zebradil
approved these changes
Oct 30, 2023
Zebradil
reviewed
Oct 30, 2023
I think we might change a little the new configuration section, so I marked it as experimental. |
mykso-bot
added a commit
that referenced
this pull request
Oct 31, 2023
# [2.1.0](v2.0.4...v2.1.0) (2023-10-31) ### Bug Fixes * **init:** ignore top level .myks folder ([#116](#116)) ([b39eb8d](b39eb8d)) * **render:** fix panic if metadata.name is not set ([#123](#123)) ([cdf3266](cdf3266)) * **smart-mode:** correct detection of changes in "_env/argocd" ([#111](#111)) ([ec5dd1d](ec5dd1d)) * **smart-mode:** filter out deleted envs and apps ([93fa2e3](93fa2e3)), closes [#114](#114) ### Features * add metadata to ytt steps ([#119](#119)) ([6443a20](6443a20)) * **global-ytt:** log ytt output on error ([#120](#120)) ([a22f7aa](a22f7aa)) * **ui:** add smart-mode.only-print flag for debugging ([0a6349a](0a6349a))
Zebradil
pushed a commit
that referenced
this pull request
Nov 21, 2023
# [2.1.0](v2.0.4...v2.1.0) (2023-10-31) ### Bug Fixes * **init:** ignore top level .myks folder ([#116](#116)) ([b39eb8d](b39eb8d)) * **render:** fix panic if metadata.name is not set ([#123](#123)) ([cdf3266](cdf3266)) * **smart-mode:** correct detection of changes in "_env/argocd" ([#111](#111)) ([ec5dd1d](ec5dd1d)) * **smart-mode:** filter out deleted envs and apps ([93fa2e3](93fa2e3)), closes [#114](#114) ### Features * add metadata to ytt steps ([#119](#119)) ([6443a20](6443a20)) * **global-ytt:** log ytt output on error ([#120](#120)) ([a22f7aa](a22f7aa)) * **ui:** add smart-mode.only-print flag for debugging ([0a6349a](0a6349a))
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.
This enables ytt rendering to be aware of the application.
e.g. create a namespace based on the application name.