Skip to content

Commit

Permalink
perf: use IfNotPresent pull policy (#21)
Browse files Browse the repository at this point in the history
* perf: use IfNotPresent pullpolicy

* chore: bump python

* chore: fmt

* fix: ci
  • Loading branch information
ion-elgreco authored Jan 31, 2025
1 parent 6541232 commit dd949c8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Build a binary wheel
run: uv build .
- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -79,7 +79,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: my_dists/
Expand Down
2 changes: 1 addition & 1 deletion dagster_uc/uc_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def gen_new_deployment_yaml(
name,
),
"tag": tag,
"pullPolicy": "Always",
"pullPolicy": "IfNotPresent", # Safe, due to versioning of each deployment image
},
"dagsterApiGrpcArgs": [
"-f",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "dagster-uc"
version = "0.3.3"
version = "0.3.4"
authors = [
{name = "Stefan Verbruggen"},
{name = "Ion Koutsouris"},
Expand Down

0 comments on commit dd949c8

Please sign in to comment.