Container image tagging strategy with dbt versions#227
Open
GideonStowell wants to merge 2 commits intokestra-io:mainfrom
Open
Container image tagging strategy with dbt versions#227GideonStowell wants to merge 2 commits intokestra-io:mainfrom
GideonStowell wants to merge 2 commits intokestra-io:mainfrom
Conversation
…build arg, don't tag anything `latest` anymore
Comment on lines
-4
to
-5
| schedule: | ||
| - cron: '0 9 * * MON' |
Member
There was a problem hiding this comment.
Maybe not remove it but make it more frequent?
Author
There was a problem hiding this comment.
No, I want it less frequent.
Respectfully, did you read the description? The point of removing the schedule is to prevent new images from being built every week and breaking our dbt workflows every monday morning.
Member
There was a problem hiding this comment.
Then the filename shouldn't contain -scheduled anymore to fit with this logic ;-)
| paths: | ||
| - dockerfiles/* | ||
| branches: | ||
| - master |
Member
There was a problem hiding this comment.
Should be changed to main now that the main branch is main by the way
Member
|
@GideonStowell Did you have time to get back on the PR? Thanks 🙏 |
Member
|
Hey @GideonStowell, are there any updates on this? |
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.
Related Slack thread
What changes are being made and why?
How the changes have been QAed?
Contributor Checklist ✅
closes #ISSUE_IDorfixes #ISSUE_IDin the description if the PR relates to an opened issue.@Schemafor properties and outputs,@Pluginwith examples,README.mdfile with basic knowledge and specifics).rnotrendered(eg:rHost).runContext.logger()to log enough important infos where it's needed and with the best level (DEBUG, INFO, WARN or ERROR).⚙️ Properties
Property<T>carrier type, do not use@PluginProperty.@NotNulland checked during the rendering.Property<Map<String, Object>>.🌐 HTTP
io.kestra.core.http.client📦 JSON
@JsonIgnoreProperties(ignoreUnknown = true)at the mapped class level. So that we will avoid to crash the plugin if the provider add a new field suddenly.io.kestra.core.serializers)✨ New plugins / subplugins
package-info.javaunder each sub package respecting this format and choosing the right category.runContext.metric(...)you have to add a@Metric(see this doc)io.kestra.plugin.kubernetes) and in a sub package (e.g.io.kestra.plugin.kubernetes.kubectl), whether it's: all tasks/triggers in the root package OR only tasks/triggers in sub packages.src/main/resources/iconsin SVG format and not in thumbnail (keep it big):plugin-icon.svgio.kestra.plugin.aws.svgio.kestra.plugin.aws.s3, addio.kestra.plugin.aws.s3.svgSee example here.
"{{ secret('YOUR_SECRET') }}"in the examples for sensible infos such as an API KEY.Property<FetchType> fetchTypeto be able to useFETCH_ONE,FETCHand evenSTOREto store big amount of data in the internal storage."""to close examples blocks with the flow id.index.yamlfor the main plugin, and for each new subpackage add a metadata file named exactly after the subpackage (e.g.s3.yamlforio.kestra.plugin.aws.s3) undersrc/main/resources/metadata/, following the same schema.🧪 Tests
RunContextto actually run tasks).src/test/resources/flows..github/setup-unit.sh(to be set executable withchmod +x setup-unit.sh) (which can be executed locally and in the CI) all along with a newdocker-compose-ci.ymlfile (do not edit the existingdocker-compose.yml). If needed, create an executable (chmod +x cleanup-unit.sh)cleanup-unit.shto remove the potential costly resources (tables, datasets, etc).📤 Outputs
VoidOutput.