Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

[WIP] rename ObjectMeta field to fix decoding issues #25

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions custom_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ import (
// specifications of the resource the AWS operator is interested in.
type CustomObject struct {
unversioned.TypeMeta `json:",inline"`
v1.ObjectMeta `json:"metadata,omitempty"`
Spec Spec `json:"spec" yaml:"spec"`
Metadata v1.ObjectMeta `json:"metadata,omitempty"`
Spec Spec `json:"spec" yaml:"spec"`
}