From 792da1facd377fcad49df2f44a114366a58d6d6e Mon Sep 17 00:00:00 2001 From: RainbowMango Date: Thu, 14 Nov 2019 17:19:49 +0800 Subject: [PATCH] Add show hidden flag to kube-proxy Kubernetes-commit: 9b7d8712cfa81078593e12dbd0c43f680ab4d910 --- config/v1alpha1/types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/v1alpha1/types.go b/config/v1alpha1/types.go index 48435c6..fc31406 100644 --- a/config/v1alpha1/types.go +++ b/config/v1alpha1/types.go @@ -158,6 +158,8 @@ type KubeProxyConfiguration struct { NodePortAddresses []string `json:"nodePortAddresses"` // winkernel contains winkernel-related configuration options. Winkernel KubeProxyWinkernelConfiguration `json:"winkernel"` + // ShowHiddenMetricsForVersion is the version for which you want to show hidden metrics. + ShowHiddenMetricsForVersion string `json:"showHiddenMetricsForVersion"` } // Currently, three modes of proxy are available in Linux platform: 'userspace' (older, going to be EOL), 'iptables'