From 64b395f15ad6727d693bd9c4d273948f433afa54 Mon Sep 17 00:00:00 2001 From: Thomas E Lackey Date: Mon, 4 Mar 2024 23:05:35 -0600 Subject: [PATCH] more oops --- stack_orchestrator/deploy/spec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/spec.py b/stack_orchestrator/deploy/spec.py index 8c2f37ea..cbec8ae5 100644 --- a/stack_orchestrator/deploy/spec.py +++ b/stack_orchestrator/deploy/spec.py @@ -103,7 +103,7 @@ class Spec: return self.obj.get(constants.volumes_key, {}) def get_configmaps(self): - return self.obj.get(constants.configmaps_key) + return self.obj.get(constants.configmaps_key, {}) def get_container_resources(self): return Resources(self.obj.get(constants.resources_key, {}).get("containers", {}))