We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adbe393 commit c3173a3Copy full SHA for c3173a3
src/zenml/integrations/modal/step_operators/modal_step_operator.py
@@ -131,6 +131,13 @@ def launch(
131
zc = Client()
132
stack = zc.active_stack
133
134
+ if not stack.container_registry:
135
+ raise ValueError(
136
+ "No Container registry found in the stack. "
137
+ "Please add a container registry and ensure "
138
+ "it is correctly configured."
139
+ )
140
+
141
if docker_creds := stack.container_registry.credentials:
142
docker_username, docker_password = docker_creds
143
else:
0 commit comments