Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ShowHiddenMetricsForVersion (0.28 sec)

  1. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    	out.HealthzBindAddress = in.HealthzBindAddress
    	out.MetricsBindAddress = in.MetricsBindAddress
    	out.BindAddressHardFail = in.BindAddressHardFail
    	out.EnableProfiling = in.EnableProfiling
    	out.ShowHiddenMetricsForVersion = in.ShowHiddenMetricsForVersion
    	out.Mode = config.ProxyMode(in.Mode)
    	if err := Convert_v1alpha1_KubeProxyIPTablesConfiguration_To_config_KubeProxyIPTablesConfiguration(&in.IPTables, &out.IPTables, s); err != nil {
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/validation/validation.go

    	}
    
    	allErrs = append(allErrs, validateKubeProxyNodePortAddress(config.NodePortAddresses, newPath.Child("NodePortAddresses"))...)
    	allErrs = append(allErrs, validateShowHiddenMetricsVersion(config.ShowHiddenMetricsForVersion, newPath.Child("ShowHiddenMetricsForVersion"))...)
    
    	allErrs = append(allErrs, validateDetectLocalMode(config.DetectLocalMode, newPath.Child("DetectLocalMode"))...)
    	if config.DetectLocalMode == kubeproxyconfig.LocalModeBridgeInterface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/types.go

    	// enableProfiling enables profiling via web interface on /debug/pprof handler.
    	// Profiling handlers will be handled by metrics server.
    	EnableProfiling bool
    	// showHiddenMetricsForVersion is the version for which you want to show hidden metrics.
    	ShowHiddenMetricsForVersion string
    
    	// mode specifies which proxy mode to use.
    	Mode ProxyMode
    	// iptables contains iptables-related configuration options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/options/options.go

    	AggregatorRejectForwardingRedirects bool
    
    	ServiceAccountSigningKeyFile     string
    	ServiceAccountIssuer             serviceaccount.TokenGenerator
    	ServiceAccountTokenMaxExpiration time.Duration
    
    	ShowHiddenMetricsForVersion string
    
    	SystemNamespaces []string
    }
    
    // completedServerRunOptions is a private wrapper that enforces a call of Complete() before Run can be invoked.
    type completedOptions struct {
    	Options
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options.go

    	Authorization  *apiserveroptions.DelegatingAuthorizationOptions
    	Metrics        *metrics.Options
    	Logs           *logs.Options
    
    	Master                      string
    	ShowHiddenMetricsForVersion string
    }
    
    // NewKubeControllerManagerOptions creates a new KubeControllerManagerOptions with a default config.
    func NewKubeControllerManagerOptions() (*KubeControllerManagerOptions, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server.go

    	fs.StringVar(&o.config.ShowHiddenMetricsForVersion, "show-hidden-metrics-for-version", o.config.ShowHiddenMetricsForVersion,
    		"The previous version for which you want to show hidden metrics. "+
    			"Only the previous minor version is meaningful, other values will not be allowed. "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/validation/validation.go

    	if err := validateKubeletOSConfiguration(kc); err != nil {
    		allErrors = append(allErrors, err)
    	}
    	allErrors = append(allErrors, metrics.ValidateShowHiddenMetricsVersion(kc.ShowHiddenMetricsForVersion)...)
    
    	if errs := logsapi.Validate(&kc.Logging, localFeatureGate, field.NewPath("logging")); len(errs) > 0 {
    		allErrors = append(allErrors, errs.ToAggregate().Errors()...)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    	// The purpose of this format is make sure you have the opportunity to notice if the next release hides additional metrics,
    	// rather than being surprised when they are permanently removed in the release after that.
    	ShowHiddenMetricsForVersion string
    	// Logging specifies the options of logging.
    	// Refer [Logs Options](https://github.com/kubernetes/component-base/blob/master/logs/options.go) for more information.
    	Logging logsapi.LoggingConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top