Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for lives (0.04 sec)

  1. pkg/scheduler/schedule_one.go

    	} else {
    		// In the case of extender, the pod may have been bound successfully, but timed out returning its response to the scheduler.
    		// It could result in the live version to carry .spec.nodeName, and that's inconsistent with the internal-queued version.
    		if len(cachedPod.Spec.NodeName) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // +optional
      optional bool optionalOldSelf = 6;
    }
    
    // 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 Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager.go

    	// ClientBuilder will provide a client for this controller to use
    	ClientBuilder clientbuilder.ControllerClientBuilder
    
    	// InformerFactory gives access to informers for the controller.
    	InformerFactory informers.SharedInformerFactory
    
    	// ObjectOrMetadataInformerFactory gives access to informers for typed resources
    	// and dynamic resources by their metadata. All generic controllers currently use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	return map_Variable
    }
    
    var map_WebhookClientConfig = map[string]string{
    	"":         "WebhookClientConfig contains the information to make a TLS connection with the webhook",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  5. pkg/controller/serviceaccount/tokens_controller.go

    	}
    	if sa != nil {
    		// Ensure UID matches if given
    		if len(uid) == 0 || uid == sa.UID {
    			return sa, nil
    		}
    	}
    
    	if !fetchOnCacheMiss {
    		return nil, nil
    	}
    
    	// Live lookup
    	sa, err = e.client.CoreV1().ServiceAccounts(ns).Get(context.TODO(), name, metav1.GetOptions{})
    	if apierrors.IsNotFound(err) {
    		return nil, nil
    	}
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    }
    
    // WebhookClientConfig contains the information to make a TLS
    // connection with the webhook. It has the same field as admissionregistration.internal.WebhookClientConfig.
    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: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    type UpgradeDiffConfiguration struct {
    	// KubernetesVersion is the target version of the control plane.
    	// +optional
    	KubernetesVersion string `json:"kubernetesVersion,omitempty"`
    
    	// DiffContextLines is the number of lines of context in the diff.
    	// +optional
    	DiffContextLines int `json:"contextLines,omitempty"`
    }
    
    // UpgradeNodeConfiguration contains a list of configurable options which are specific to the "kubeadm upgrade node" command.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    }
    
    // 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
    - 28.7K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	// GetContainerLogs returns logs of a specific container. By
    	// default, it returns a snapshot of the container log. Set 'follow' to true to
    	// stream the log. Set 'follow' to false and specify the number of lines (e.g.
    	// "100" or "all") to tail the log.
    	GetContainerLogs(ctx context.Context, pod *v1.Pod, containerID ContainerID, logOptions *v1.PodLogOptions, stdout, stderr io.Writer) (err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    }
    
    // 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: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top