diff --git a/stack_orchestrator/deploy/spec.py b/stack_orchestrator/deploy/spec.py index 83762b35..2dca1a4f 100644 --- a/stack_orchestrator/deploy/spec.py +++ b/stack_orchestrator/deploy/spec.py @@ -103,11 +103,8 @@ class Spec: Used for private container registries like GHCR. The token-env field specifies an environment variable containing the API token/PAT. - - Note: Uses 'registry-credentials' key to avoid collision with - 'image-registry' key which is for pushing images. """ - return self.obj.get("registry-credentials") + return self.obj.get("image-pull-secret") def get_volumes(self): return self.obj.get(constants.volumes_key, {})