We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e5413f commit 8651e9aCopy full SHA for 8651e9a
src/dstack/_internal/core/backends/runpod/compute.py
@@ -210,8 +210,10 @@ def run_job(
210
211
instance_id = resp["id"]
212
213
- # Keep the same post-create registry-auth flow for both GPU and CPU paths.
+ # Call edit_pod to pass container_registry_auth_id.
214
# Expect a long time (~5m) for the pod to pick up the creds.
215
+ # TODO: remove editPod once Runpod's create mutations support docker's username/password
216
+ # (or a reliable containerRegistryAuthId at create time).
217
if container_registry_auth_id is not None:
218
instance_id = self.api_client.edit_pod(
219
pod_id=instance_id,
0 commit comments