Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for lives (0.23 sec)

  1. cmd/kube-controller-manager/app/core.go

    		controllerContext.InformerFactory.Core().V1().Nodes(),
    		controllerContext.ComponentConfig.KubeCloudShared.ClusterName,
    		utilfeature.DefaultFeatureGate,
    	)
    	if err != nil {
    		// This error shouldn't fail. It lives like this as a legacy.
    		klog.FromContext(ctx).Error(err, "Failed to start service controller")
    		return nil, false, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			encryptionConfigPath: "testdata/encryption-configs/no-kms-provider.yaml",
    			wantHealthzChecks:    []string{"etcd"},
    			wantReadyzChecks:     []string{"etcd", "etcd-readiness"},
    			wantLivezChecks:      []string{"etcd"},
    		},
    		{
    			name:                 "no kms-provider+reload, expect single kms healthz check, no kms livez check",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		"/healthz/wrapping-health",
    		"/livez",
    		"/livez/delegate-health",
    		"/livez/log",
    		"/livez/ping",
    		"/livez/poststarthook/delegate-post-start-hook",
    		"/livez/poststarthook/generic-apiserver-start-informers",
    		"/livez/poststarthook/max-in-flight-filter",
    		"/livez/poststarthook/storage-object-count-tracker-hook",
    		"/livez/poststarthook/wrapping-post-start-hook",
    		"/metrics",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/number_generated_rules_test.go

    			if fp.filterRules.Lines() != test.expectedFilterRules {
    				t.Errorf("expected number of Filter rules: %d, got: %d", test.expectedFilterRules, fp.filterRules.Lines())
    			}
    
    			if fp.natRules.Lines() != test.expectedNatRules {
    				t.Errorf("expected number of NAT rules: %d, got: %d", test.expectedNatRules, fp.natRules.Lines())
    			}
    
    			// print generated iptables data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/token.go

    			to trust the server it is talking to. Then a bootstrap token with the "signing" usage can be used.
    			bootstrap tokens can also function as a way to allow short-lived authentication to the API Server
    			(the token serves as a way for the API Server to trust the client), for example for doing the TLS Bootstrap.
    
    			What is a bootstrap token more exactly?
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/etcd/local.go

    				},
    			},
    			// The etcd probe endpoints are explained here:
    			// https://github.com/kubernetes/kubeadm/issues/3039
    			LivenessProbe:  staticpodutil.LivenessProbe(probeHostname, "/livez", probePort, probeScheme),
    			ReadinessProbe: staticpodutil.ReadinessProbe(probeHostname, "/readyz", probePort, probeScheme),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/server.go

    	})
    }
    
    // newHealthEndpointsAndMetricsHandler creates an API health server from the config, and will also
    // embed the metrics handler.
    // TODO: healthz check is deprecated, please use livez and readyz instead. Will be removed in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top