From 826b44fd0dfdd828b162056c1e54eed9e957b288 Mon Sep 17 00:00:00 2001 From: Matt Schallert Date: Mon, 27 Jun 2022 20:43:01 +0000 Subject: [PATCH] fix json tag --- pkg/apis/m3dboperator/v1alpha1/cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/apis/m3dboperator/v1alpha1/cluster.go b/pkg/apis/m3dboperator/v1alpha1/cluster.go index 8e01391..8999b8b 100644 --- a/pkg/apis/m3dboperator/v1alpha1/cluster.go +++ b/pkg/apis/m3dboperator/v1alpha1/cluster.go @@ -342,7 +342,7 @@ type ClusterSpec struct { // provide a selector here so we can point to a separate coordinator service. type ExternalCoordinatorConfig struct { // +kubebuilder:validation:Optional - Selector map[string]string `json:"selector,omityempty"` + Selector map[string]string `json:"selector,omitempty"` // +kubebuilder:validation:Optional ServiceEndpoint string `json:"serviceEndpoint,omitempty"` }