From 1042ab32a59ed255f496aa10692bef2be81d9ca5 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Wed, 29 Apr 2015 19:52:51 -0400 Subject: [PATCH] Capitalization of KubeProxyVersion wrong in JSON --- pkg/api/v1/types.go | 2 +- pkg/api/v1beta1/types.go | 2 +- pkg/api/v1beta2/types.go | 2 +- pkg/api/v1beta3/types.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/api/v1/types.go b/pkg/api/v1/types.go index 525514777a1..60769b53ab7 100644 --- a/pkg/api/v1/types.go +++ b/pkg/api/v1/types.go @@ -1115,7 +1115,7 @@ type NodeSystemInfo struct { // Kubelet version reported by the node KubeletVersion string `json:"kubeletVersion" description:"Kubelet version reported by the node"` // Kube-proxy version reported by the node - KubeProxyVersion string `json:"KubeProxyVersion" description:"Kube-proxy version reported by the node"` + KubeProxyVersion string `json:"kubeProxyVersion" description:"Kube-proxy version reported by the node"` } // NodeStatus is information about the current status of a node. diff --git a/pkg/api/v1beta1/types.go b/pkg/api/v1beta1/types.go index 52ab9fb31b4..188bcecc9ca 100644 --- a/pkg/api/v1beta1/types.go +++ b/pkg/api/v1beta1/types.go @@ -960,7 +960,7 @@ type NodeSystemInfo struct { // Kubelet version reported by the node KubeletVersion string `json:"kubeletVersion" description:"Kubelet version reported by the node"` // Kube-proxy version reported by the node - KubeProxyVersion string `json:"KubeProxyVersion" description:"Kube-proxy version reported by the node"` + KubeProxyVersion string `json:"kubeProxyVersion" description:"Kube-proxy version reported by the node"` } // NodeStatus is information about the current status of a node. diff --git a/pkg/api/v1beta2/types.go b/pkg/api/v1beta2/types.go index 5c822d17d30..7dc37796221 100644 --- a/pkg/api/v1beta2/types.go +++ b/pkg/api/v1beta2/types.go @@ -974,7 +974,7 @@ type NodeSystemInfo struct { // Kubelet version reported by the node KubeletVersion string `json:"kubeletVersion" description:"Kubelet version reported by the node"` // Kube-proxy version reported by the node - KubeProxyVersion string `json:"KubeProxyVersion" description:"Kube-proxy version reported by the node"` + KubeProxyVersion string `json:"kubeProxyVersion" description:"Kube-proxy version reported by the node"` } // NodeStatus is information about the current status of a node. diff --git a/pkg/api/v1beta3/types.go b/pkg/api/v1beta3/types.go index 48fc3d4cb21..73cdb9b94fd 100644 --- a/pkg/api/v1beta3/types.go +++ b/pkg/api/v1beta3/types.go @@ -1115,7 +1115,7 @@ type NodeSystemInfo struct { // Kubelet version reported by the node KubeletVersion string `json:"kubeletVersion" description:"Kubelet version reported by the node"` // Kube-proxy version reported by the node - KubeProxyVersion string `json:"KubeProxyVersion" description:"Kube-proxy version reported by the node"` + KubeProxyVersion string `json:"kubeProxyVersion" description:"Kube-proxy version reported by the node"` } // NodeStatus is information about the current status of a node.