Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for lives (0.08 sec)

  1. 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)
  2. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    }
    
    // AddBootSequenceHealthChecks adds health checks to the old healthz endpoint (for backwards compatibility reasons)
    // as well as livez and readyz. The livez grace period is defined by the value of the
    // command-line flag --livez-grace-period; before the grace period elapses, the livez health checks
    // will default to healthy. One may want to set a grace period in order to prevent the kubelet from restarting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. 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)
  4. pkg/proxy/iptables/proxier_test.go

    		lines := strings.Split(strings.Trim(table, "\n"), "\n")
    		// The first line should be, eg, "*nat" or "*filter"
    		if lines[0][0] != '*' {
    			return nil, fmt.Errorf("bad ruleData (table %d starts with %q)", i+1, lines[0])
    		}
    		// add back the "COMMIT" line that got eaten by the strings.Split above
    		lines = append(lines, "COMMIT")
    		tables[lines[0][1:]] = lines
    	}
    
    	if tables["nat"] == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	}
    	return "", fallbackToLogs
    }
    
    // readLastStringFromContainerLogs attempts to read up to the max log length from the end of the CRI log represented
    // by path. It reads up to max log lines.
    func (m *kubeGenericRuntimeManager) readLastStringFromContainerLogs(path string) string {
    	value := int64(kubecontainer.MaxContainerTerminationMessageLogLines)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      optional string Expression = 2;
    }
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    message WebhookClientConfig {
      // `url` gives the location of the webhook, in standard URL form
      // (`scheme://host:port/path`). Exactly one of `url` or `service`
      // must be specified.
      //
      // The `host` should not refer to a service running in the cluster; use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // FallbackToLogsOnError will use the last chunk of container log output if the termination
      // message file is empty and the container exited with an error.
      // The log output is limited to 2048 bytes or 80 lines, whichever is smaller.
      // Defaults to File.
      // Cannot be updated.
      // +optional
      optional string terminationMessagePolicy = 20;
    
      // Image pull policy.
      // One of Always, Never, IfNotPresent.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top