Skip to content

Commit

Permalink
Fix unittests and failing import
Browse files Browse the repository at this point in the history
  • Loading branch information
kgrunert committed Dec 7, 2023
1 parent 45a6d9a commit ba5a4ea
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mpyl/utilities/helm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Helper methods for helm deployments
"""

from mpyl.project import Target
from mpyl.steps.models import RunProperties
from ...project import Target
from ...steps.models import RunProperties


def convert_to_helm_release_name(name: str, tag: str) -> str:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,10 @@ deployments:
enabled: true
name: example-dagster-user-code-pr-1234
port: 3030
resources:
requests:
memory: 256Mi
cpu: 50m
limits:
memory: 512Mi
cpu: 1000m
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,10 @@ deployments:
enabled: true
name: example-dagster-user-code
port: 3030
resources:
requests:
memory: 256Mi
cpu: 50m
limits:
memory: 512Mi
cpu: 1000m
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,10 @@ deployments:
enabled: true
name: example-dagster-user-code-pr-1234
port: 3030
resources:
requests:
memory: 256Mi
cpu: 50m
limits:
memory: 512Mi
cpu: 1000m

0 comments on commit ba5a4ea

Please sign in to comment.