Fix typos in struct tags

Change-Id: Ied4c5cc120ce9a86253e6af407f46c687c3a7fd8
This commit is contained in:
Vladimir Kozhukalov 2020-12-30 22:16:52 +03:00
parent e2af947337
commit 9cd9304a22

View File

@ -34,11 +34,11 @@ type Isogen struct {
// Cloud Init user data will be retrieved from the doc matching this object
UserDataSelector types.Selector `json:"userDataSelector,omitempty"`
// Cloud init user data will be retrieved from this document key
UserDataKey string `jsong:"userDataKey,omitempty"`
UserDataKey string `json:"userDataKey,omitempty"`
// Cloud Init network config will be retrieved from the doc matching this object
NetworkConfigSelector types.Selector `json:"networkConfigSelector,omitempty"`
// Cloud init network config will be retrieved from this document key
NetworkConfigKey string `jsong:"networkConfigKey,omitempty"`
NetworkConfigKey string `json:"networkConfigKey,omitempty"`
// File name to use for the output image that will be written to the container volume root
OutputFileName string `json:"outputFileName,omitempty"`
}