Skip to content

Commit

Permalink
CStatus should be status otherwise it doesn't work at all to load 'st…
Browse files Browse the repository at this point in the history
…atus:' (#1348)
  • Loading branch information
lknite authored Jul 25, 2023
1 parent 3edf256 commit 66ad77d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/customResource/CustomResourceDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public abstract class CustomResource<TSpec, TStatus> : 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<T> : KubernetesObject
Expand Down

0 comments on commit 66ad77d

Please sign in to comment.