CStatus should be status otherwise it doesn't work at all to load 'status:' (#1348)

This commit is contained in:
leland knight
2023-07-25 12:30:06 -06:00
committed by GitHub
parent 3edf256def
commit 66ad77d0d2

View File

@@ -32,8 +32,8 @@ namespace customResource
[JsonPropertyName("spec")] [JsonPropertyName("spec")]
public TSpec Spec { get; set; } public TSpec Spec { get; set; }
[JsonPropertyName("CStatus")] [JsonPropertyName("status")]
public TStatus CStatus { get; set; } public TStatus Status { get; set; }
} }
public class CustomResourceList<T> : KubernetesObject public class CustomResourceList<T> : KubernetesObject