From 9dbd33a9060cd4f1df9a9c471354b94d1dff4bdb Mon Sep 17 00:00:00 2001 From: benbierens Date: Mon, 25 Sep 2023 09:57:27 +0200 Subject: [PATCH] Fixes serialization issue for running-pod type. --- Framework/KubernetesWorkflow/RunningPod.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/KubernetesWorkflow/RunningPod.cs b/Framework/KubernetesWorkflow/RunningPod.cs index ca8c9c10..f4282bad 100644 --- a/Framework/KubernetesWorkflow/RunningPod.cs +++ b/Framework/KubernetesWorkflow/RunningPod.cs @@ -14,8 +14,8 @@ public K8sCluster Cluster { get; } public PodInfo PodInfo { get; } public ContainerRecipePortMapEntry[] PortMapEntries { get; } - internal string DeploymentName { get; } - internal string ServiceName { get; } + public string DeploymentName { get; } + public string ServiceName { get; } public Port[] GetServicePortsForContainerRecipe(ContainerRecipe containerRecipe) {