Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for lives (0.05 sec)

  1. pkg/controlplane/apiserver/options/options.go

    	s.Admission.AddFlags(fss.FlagSet("admission"))
    	s.Metrics.AddFlags(fss.FlagSet("metrics"))
    	logsapi.AddFlags(s.Logs, fss.FlagSet("logs"))
    	s.Traces.AddFlags(fss.FlagSet("traces"))
    
    	// Note: the weird ""+ in below lines seems to be the only way to get gofmt to
    	// arrange these text blocks sensibly. Grrr.
    	fs := fss.FlagSet("misc")
    	fs.DurationVar(&s.EventTTL, "event-ttl", s.EventTTL,
    		"Amount of time to retain events.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		defer klog.V(1).InfoS("[graceful-termination] shutdown event", "name", delayedStopCh.Name())
    
    		<-stopCh
    
    		// As soon as shutdown is initiated, /readyz should start returning failure.
    		// This gives the load balancer a window defined by ShutdownDelayDuration to detect that /readyz is red
    		// and stop sending traffic to this server.
    		shutdownInitiatedCh.Signal()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/certs_test.go

    			}
    
    			var lines []string
    			for _, line := range strings.SplitAfter(outputStr, "\n") {
    				if strings.TrimSpace(line) != "" {
    					lines = append(lines, line)
    				}
    			}
    			// 2 lines for the column headers.
    			expectedLineCount := len(caCerts) + len(kubeadmCerts) + len(kubeConfigs) + 2
    			assert.Lenf(t, lines, expectedLineCount, "expected %d non-blank lines in output", expectedLineCount)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:26:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    type UpgradeDiffConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	KubernetesVersion string
    
    	// DiffContextLines is the number of lines of context in the diff.
    	DiffContextLines int
    }
    
    // UpgradeNodeConfiguration contains a list of configurable options which are specific to the "kubeadm upgrade node" command.
    type UpgradeNodeConfiguration struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pkg/proxy/metrics/metrics.go

    		},
    		[]string{"code"},
    	)
    
    	// ProxyLivezTotal is the number of returned HTTP Status for each
    	// livez probe.
    	ProxyLivezTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "proxy_livez_total",
    			Help:           "Cumulative proxy livez HTTP status",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"code"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    //     implementations without a valid VolumeSource will fail.
    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    //     Default is "pv-recycler-".
    //  3. pod.Spec.ActiveDeadlineSeconds gives the recycler pod a maximum timeout
    //     before failing.  Recommended.  Default is 60 seconds.
    //
    // See HostPath and NFS for working recycler examples
    func NewPersistentVolumeRecyclerPodTemplate() *v1.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	}
    	if getCalls != 1 {
    		t.Errorf("Expected a live lookup of the namespace at t=forceLiveLookupTTL, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// Ensure the live lookup expires
    	fakeClock.Step(time.Millisecond)
    
    	// verify create operations in the namespace don't force a live lookup after the timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// to set values and determine whether its allowed
    	AdmissionControl      admission.Interface
    	CorsAllowedOriginList []string
    	HSTSDirectives        []string
    	// FlowControl, if not nil, gives priority and fairness to request handling
    	FlowControl utilflowcontrol.Interface
    
    	EnableIndex     bool
    	EnableProfiling bool
    	DebugSocketPath string
    	EnableDiscovery bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  9. hack/make-rules/test.sh

    goflags=()
    # The junit report tool needs full test case information to produce a
    # meaningful report.
    if [[ -n "${KUBE_JUNIT_REPORT_DIR}" ]] ; then
      goflags+=(-v)
      goflags+=(-json)
      # Show only summary lines by matching lines like "status package/test"
      go_test_grep_pattern="^[^[:space:]]\+[[:space:]]\+[^[:space:]]\+/[^[[:space:]]\+"
    fi
    
    if [[ -n "${FULL_LOG:-}" ]] ; then
      go_test_grep_pattern=".*"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pkg/proxy/nftables/helpers_test.go

    func sortNFTablesTransaction(tx string) string {
    	lines := strings.Split(tx, "\n")
    
    	// strip blank lines and comments
    	for i := 0; i < len(lines); {
    		if lines[i] == "" || lines[i][0] == '#' {
    			lines = append(lines[:i], lines[i+1:]...)
    		} else {
    			i++
    		}
    	}
    
    	// sort remaining lines
    	sort.SliceStable(lines, func(i, j int) bool {
    		li := lines[i]
    		wi := strings.Split(li, " ")
    		lj := lines[j]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top