Commit 4bd234b6 authored by Brendan Burns's avatar Brendan Burns

Correct a typo in the json/yaml tags for 3rd party objects.

parent 29e8b612
......@@ -182,7 +182,7 @@ type ThirdPartyResourceData struct {
api.ObjectMeta `json:"metadata,omitempty"`
// Data is the raw JSON data for this data.
Data []byte `json:"name,omitempty"`
Data []byte `json:"data,omitempty"`
}
type Deployment struct {
......
......@@ -172,7 +172,7 @@ type ThirdPartyResourceData struct {
v1.ObjectMeta `json:"metadata,omitempty"`
// Data is the raw JSON data for this data.
Data []byte `json:"name,omitempty"`
Data []byte `json:"data,omitempty"`
}
// Deployment enables declarative updates for Pods and ReplicationControllers.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment