Snowflake Apps: Use artifact repository only#2881
Merged
sfc-gh-gbloom merged 2 commits intomainfrom Apr 17, 2026
Merged
Conversation
23d5d5a to
31949a5
Compare
Replace the image-repository deploy path with artifact repositories as the sole build/deploy mechanism. Every app now gets a per-app artifact repo named `<app-id>_REPO` by default (overridable via YAML, SnowApps params, or config table). - Add artifact_repository to _resolve_deploy_defaults with 5-tier precedence (yml > params > config table > built-in > session) - Remove image-repo branching from deploy(); always use artifact repo - Remove unused image-repo methods and helpers - Omit artifact_repository from generated snowflake.yml (convention) - Warn when image_repository is configured but ignored - Update all tests for new default behavior Made-with: Cursor
31949a5 to
c96f2b0
Compare
sfc-gh-jfloyd
previously approved these changes
Apr 17, 2026
… deployments The teardown command was lost during a merge conflict resolution. Re-add it with support for both deploy paths: artifact-repo deployments use DROP APPLICATION SERVICE, while legacy image-repo deployments use DROP SERVICE and also clean up the build job service. Made-with: Cursor
c96f2b0 to
443a4e9
Compare
sfc-gh-jfloyd
approved these changes
Apr 17, 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.
Pre-review checklist
Changes description
For
snow __app deploy, use only artifact-repository (drop support for image repository). If a specificartifact_repositorywas not specified insnowflake.ymlor config table, a new artifact repository named<APP_ID>_REPOwill be created.