Container image tagging strategy with dbt versions#227
Merged
fdelbrayelle merged 6 commits intokestra-io:mainfrom Mar 12, 2026
Merged
Container image tagging strategy with dbt versions#227fdelbrayelle merged 6 commits intokestra-io:mainfrom
fdelbrayelle merged 6 commits intokestra-io:mainfrom
Conversation
Member
|
@GideonStowell Did you have time to get back on the PR? Thanks 🙏 |
Member
|
Hey @GideonStowell, are there any updates on this? |
…build arg, don't tag anything `latest` anymore
Member
|
Hi @GideonStowell 👋 I'll take over the PR to finish the work on this one 👀 |
…le and CI tests
- Rename packages-scheduled-update.yml to packages-update.yml (no longer scheduled)
- Add 'main' branch to packages.yml push trigger alongside 'master'
- Fix dbt-fusion.Dockerfile: use ${DBT_VERSION:+--version $DBT_VERSION} to avoid
passing --version with no value when DBT_VERSION is empty
- Remove unnecessary ENV DBT_VERSION from all Dockerfiles (only ARG needed at build time)
- Fix README tag format documentation (dbt-1.9.1 not 1.9.1)
- Fix DbtCLITest.createSaFile to properly skip tests when GCP credentials file
is empty or GOOGLE_SERVICE_ACCOUNT contains invalid Base64
- Restore ENV DBT_VERSION=${DBT_VERSION} in all Dockerfiles for runtime
introspection (e.g. printenv DBT_VERSION)
- Restore README note about dbt-fusion.Dockerfile using external installer
- Fix workflow filename reference in README (packages-update.yml)
Member
|
Hi @anna-geller 👋 Regarding this PR, could you tell me why the Docker images were scheduled to be updated weekly? Since it breaks builds for some users this PR was raised and I think we should accept & merge it now, what do you think? Thanks 🙏 |
fdelbrayelle
approved these changes
Mar 12, 2026
This was referenced Mar 12, 2026
This was referenced Mar 12, 2026
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.