Skip to content

Commit

Permalink
types.go: Fix CRDKind (#276)
Browse files Browse the repository at this point in the history
* The kind should be lower case; this error was surfaced while trying to implement the list interface #278 

Signed-off-by: Ce Gao <ce.gao@outlook.com>
  • Loading branch information
gaocegege authored and jlewi committed Jan 10, 2018
1 parent e701fc5 commit adc8ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/apis/tensorflow/v1alpha1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

const (
CRDKind = "TfJob"
CRDKind = "tfjob"
CRDKindPlural = "tfjobs"
CRDGroup = "tensorflow.org"
CRDVersion = "v1alpha1"
Expand Down

0 comments on commit adc8ab9

Please sign in to comment.