Skip to content

Commit

Permalink
Start operatorVersion field with lower-case letter. (#1196)
Browse files Browse the repository at this point in the history
  • Loading branch information
porridge committed Dec 19, 2019
1 parent 689004b commit fec74d4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/crds/kudo_v1beta1_instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
type: object
spec:
properties:
OperatorVersion:
operatorVersion:
description: OperatorVersion specifies a reference to a specific OperatorVersion
object.
type: object
Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/testdata/deploy-kudo-ns.yaml.golden
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ spec:
type: object
spec:
properties:
OperatorVersion:
operatorVersion:
description: OperatorVersion specifies a reference to a specific OperatorVersion
object.
type: object
Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/testdata/deploy-kudo-sa.yaml.golden
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ spec:
type: object
spec:
properties:
OperatorVersion:
operatorVersion:
description: OperatorVersion specifies a reference to a specific OperatorVersion
object.
type: object
Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/testdata/deploy-kudo-webhook.yaml.golden
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ spec:
type: object
spec:
properties:
OperatorVersion:
operatorVersion:
description: OperatorVersion specifies a reference to a specific OperatorVersion
object.
type: object
Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/cmd/testdata/deploy-kudo.yaml.golden
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ spec:
type: object
spec:
properties:
OperatorVersion:
operatorVersion:
description: OperatorVersion specifies a reference to a specific OperatorVersion
object.
type: object
Expand Down
2 changes: 1 addition & 1 deletion pkg/kudoctl/kudoinit/crd/crds.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func operatorVersionCrd() *apiextv1beta1.CustomResourceDefinition {
func instanceCrd() *apiextv1beta1.CustomResourceDefinition {
crd := generateCrd("Instance", "instances")
specProps := map[string]apiextv1beta1.JSONSchemaProps{
"OperatorVersion": {Type: "object", Description: "OperatorVersion specifies a reference to a specific OperatorVersion object."},
"operatorVersion": {Type: "object", Description: "OperatorVersion specifies a reference to a specific OperatorVersion object."},
"parameters": {Type: "object"},
}
statusProps := map[string]apiextv1beta1.JSONSchemaProps{
Expand Down

0 comments on commit fec74d4

Please sign in to comment.