Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for ShowHiddenMetricsForVersion (0.6 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/kubelet/app/server.go

    	err = initConfigz(&s.KubeletConfiguration)
    	if err != nil {
    		klog.ErrorS(err, "Failed to register kubelet configuration with configz")
    	}
    
    	if len(s.ShowHiddenMetricsForVersion) > 0 {
    		metrics.SetShowHidden()
    	}
    
    	// About to get clients and such, detect standaloneMode
    	standaloneMode := true
    	if len(s.KubeConfig) > 0 {
    		standaloneMode = false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     false,
    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"showHiddenMetricsForVersion": {
    						SchemaProps: spec.SchemaProps{
    							Description: "showHiddenMetricsForVersion is the version for which you want to show hidden metrics.",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top