diff --git a/service/models_templates_tags.py b/service/models_templates_tags.py index 310ed30..c05015f 100644 --- a/service/models_templates_tags.py +++ b/service/models_templates_tags.py @@ -496,7 +496,14 @@ def combine_pod_and_template_recursively(input_obj, template_name, seen_template if input_obj.resources: input_obj.resources = input_obj.resources.dict() except Exception as e: - logger.debug(f'this part: Got exception when attempting to combine pod and templates: {e}') + logger.debug(f'this resources part: Got exception when attempting to combine pod and templates: {e}') + pass + + try: + if input_obj.networking: + input_obj.networking = input_obj.networking.dict() + except Exception as e: + logger.debug(f'this networking part: Got exception when attempting to combine pod and templates: {e}') pass except Exception as e: