Merge pull request #5220 from nikhiljindal/camelCaseFieldSelectors

Changing v1beta3 field selectors to be camelCased
This commit is contained in:
Brian Grant
2015-03-10 09:35:03 -07:00
8 changed files with 15 additions and 15 deletions

View File

@@ -259,7 +259,7 @@ func getHostFieldLabel(apiVersion string) string {
case "v1beta1", "v1beta2":
return "DesiredState.Host"
default:
return "Status.Host"
return "status.host"
}
}