Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 471 for kubetest (0.22 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// Setting this field is optional. It has a maximum size of 32 entries.
    	// If null (or empty), it is assumed this allocation will be processed by a
    	// single kubelet plugin with no ResourceHandle data attached. The name of
    	// the kubelet plugin invoked will match the DriverName set in the
    	// ResourceClaimStatus this AllocationResult is embedded in.
    	//
    	// +listType=atomic
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  2. go.work

    	./staging/src/k8s.io/kube-aggregator
    	./staging/src/k8s.io/kube-controller-manager
    	./staging/src/k8s.io/kube-proxy
    	./staging/src/k8s.io/kube-scheduler
    	./staging/src/k8s.io/kubectl
    	./staging/src/k8s.io/kubelet
    	./staging/src/k8s.io/metrics
    	./staging/src/k8s.io/mount-utils
    	./staging/src/k8s.io/pod-security-admission
    	./staging/src/k8s.io/sample-apiserver
    	./staging/src/k8s.io/sample-cli-plugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container_unsupported.go

    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	"k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // applyPlatformSpecificContainerConfig applies platform specific configurations to runtimeapi.ContainerConfig.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. cni/pkg/plugin/plugin_cni_conformance.go

    // limitations under the License.
    
    package plugin
    
    import (
    	"testing"
    
    	"github.com/containernetworking/cni/pkg/types"
    )
    
    // Validate k8sArgs struct works for unmarshalling kubelet args
    // This is important for CNI plugin conformance
    func TestLoadArgs(t *testing.T) {
    	kubeletArgs := "IgnoreUnknown=1;K8S_POD_NAMESPACE=istio-system;" +
    		"K8S_POD_NAME=istio-sidecar-injector-8489cf78fb-48pvg;" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 21:50:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    				return true
    			}
    		}
    	}
    	return false
    }
    
    // podIsShutDown returns true if kubelet is done with the pod or
    // it was force-deleted.
    func podIsShutDown(pod *v1.Pod) bool {
    	// A pod that has a deletionTimestamp and a zero
    	// deletionGracePeriodSeconds
    	// a) has been processed by kubelet and was set up for deletion
    	//    by the apiserver:
    	//    - canBeDeleted has verified that volumes were unpublished
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. pkg/kubelet/configmap/configmap_manager.go

    	corev1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	"k8s.io/kubernetes/pkg/kubelet/util/manager"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/utils/clock"
    )
    
    // Manager interface provides methods for Kubelet to manage ConfigMap.
    type Manager interface {
    	// Get configmap by configmap namespace and name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// nodeStatusUpdateFrequency in kubelet and renewInterval in NodeLease
    	// controller. The node health signal update frequency is the minimal of the
    	// two.
    	// There are several constraints:
    	// 1. nodeMonitorGracePeriod must be N times more than  the node health signal
    	//    update frequency, where N means number of retries allowed for kubelet to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    **Affected Versions**:
      - kubelet <= v1.28.0
      - kubelet <= v1.27.4
      - kubelet <= v1.26.7
      - kubelet <= v1.25.12
      - kubelet <= v1.24.16
    
    **Fixed Versions**:
      - kubelet v1.28.1
      - kubelet v1.27.5
      - kubelet v1.26.8
      - kubelet v1.25.13
      - kubelet v1.24.17
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/versiongetter_test.go

    	}
    }
    
    func TestKubeVersionGetterKubeletVersions(t *testing.T) {
    	tests := []struct {
    		name    string
    		nodes   *v1.NodeList
    		want    map[string][]string
    		wantErr bool
    	}{
    		{
    			name: "kubelet version info exists",
    			nodes: &v1.NodeList{
    				Items: []v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{Name: "node1"},
    						Status: v1.NodeStatus{
    							NodeInfo: v1.NodeSystemInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/manager.go

    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/dynamic-resource-allocation/resourceclaim"
    	"k8s.io/klog/v2"
    	drapb "k8s.io/kubelet/pkg/apis/dra/v1alpha3"
    	dra "k8s.io/kubernetes/pkg/kubelet/cm/dra/plugin"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // draManagerStateFileName is the file name where dra manager stores its state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top