Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 75 for lives (0.13 sec)

  1. hack/verify-test-featuregates.sh

    # ensure all generic features are added in alphabetic order
    lines=$(git grep 'genericfeatures[.].*:' -- pkg/features/kube_features.go)
    sorted_lines=$(echo "$lines" | sort -f)
    if [[ "$lines" != "$sorted_lines" ]]; then
      echo "Generic features in pkg/features/kube_features.go not sorted" >&2
      echo >&2
      echo "Expected:" >&2
      echo "$sorted_lines" >&2
      echo >&2
      echo "Got:" >&2
      echo "$lines" >&2
      rc=1
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	Connect      OperationType = "CONNECT"
    )
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook
    type WebhookClientConfig struct {
    	// `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
    - 61.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    // $ getsubids -g kubelet
    // 0: kubelet 65536 2147483648
    func parseGetSubIdsOutput(input string) (uint32, uint32, error) {
    	lines := strings.Split(strings.Trim(input, "\n"), "\n")
    	if len(lines) != 1 {
    		return 0, 0, fmt.Errorf("error parsing line %q: it must contain only one line", input)
    	}
    
    	parts := strings.Fields(lines[0])
    	if len(parts) != 4 {
    		return 0, 0, fmt.Errorf("invalid line %q", input)
    	}
    
    	// Parsing the numbers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K 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. CHANGELOG/CHANGELOG-1.28.md

      kube-proxy is responsible for, rather than only counting the number of rules
      that it re-synced on the last sync. The new `sync_proxy_rules_iptables_last`
      metric now gives the latter number. ([#119140](https://github.com/kubernetes/kubernetes/pull/119140), [@danwinship](https://github.com/danwinship)) [SIG Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apps__v1_openapi.json

                "type": "string"
              },
              "tty": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	LastTransitionTime metav1.Time `json:"lastTransitionTime,omitempty" protobuf:"bytes,4,opt,name=lastTransitionTime"`
    	// reason is a unique, this should be a short, machine understandable string that gives the reason
    	// for condition's last transition. If it reports "Resizing" that means the underlying
    	// persistent volume is being resized.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. 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)
Back to top