Skip to content

Commit

Permalink
Merge pull request #59 from negz/release-0.1-statusreport
Browse files Browse the repository at this point in the history
[release-0.1] Managed and composite resource statuses should be nullable
  • Loading branch information
negz committed May 5, 2021
2 parents 3f0715f + a957377 commit 59ee77a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 57 deletions.
81 changes: 27 additions & 54 deletions internal/graph/generated/generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions schema/composite.gql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type CompositeResource implements Node & KubernetesResource {
spec: CompositeResourceSpec!

"The observed state of this resource."
status: CompositeResourceStatus!
status: CompositeResourceStatus

"An unstructured JSON representation of the underlying Kubernetes resource."
unstructured: JSON!
Expand Down Expand Up @@ -111,7 +111,7 @@ type CompositeResourceClaim implements Node & KubernetesResource {
spec: CompositeResourceClaimSpec!

"The observed state of this resource."
status: CompositeResourceClaimStatus!
status: CompositeResourceClaimStatus

"An unstructured JSON representation of the underlying Kubernetes resource."
unstructured: JSON!
Expand Down
2 changes: 1 addition & 1 deletion schema/managed.gql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type ManagedResource implements Node & KubernetesResource {
spec: ManagedResourceSpec!

"The observed state of this resource."
status: ManagedResourceStatus!
status: ManagedResourceStatus

"An unstructured JSON representation of the underlying Kubernetes resource."
unstructured: JSON!
Expand Down

0 comments on commit 59ee77a

Please sign in to comment.