diff --git a/examples/customResource/CustomResourceDefinition.cs b/examples/customResource/CustomResourceDefinition.cs index b0deb2913..ad1b7f9c4 100644 --- a/examples/customResource/CustomResourceDefinition.cs +++ b/examples/customResource/CustomResourceDefinition.cs @@ -32,8 +32,8 @@ public abstract class CustomResource : CustomResource [JsonPropertyName("spec")] public TSpec Spec { get; set; } - [JsonPropertyName("CStatus")] - public TStatus CStatus { get; set; } + [JsonPropertyName("status")] + public TStatus Status { get; set; } } public class CustomResourceList : KubernetesObject