Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for Implementation (0.29 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Moved remote CRI implementation from kubelet to `k8s.io/cri-client` repository. ([#124634](https://github.com/kubernetes/kubernetes/pull/124634), [@saschagrunert](https://github.com/saschagrunert)) [SIG Node, Release and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

      - `service.kubernetes.io/topology-aware-hints` annotation has been deprecated.
      - kube-proxy now accepts any value that is not "disabled" for these annotations, enabling custom implementation-specific and/or future built-in heuristics to be used. ([#116522](https://github.com/kubernetes/kubernetes/pull/116522), [@robscott](https://github.com/robscott)) [SIG Apps, Network and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. pkg/volume/plugins.go

    // for emptiness.  Most attributes of the template will be correct for most
    // plugin implementations.  The following attributes can be overridden per
    // plugin via configuration:
    //
    //  1. pod.Spec.Volumes[0].VolumeSource must be overridden.  Recycler
    //     implementations without a valid VolumeSource will fail.
    //  2. pod.GenerateName helps distinguish recycler pods by name.  Recommended.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    	List(labels.Selector) ([]*v1.Service, error)
    }
    
    // Kubelet is the main kubelet implementation.
    type Kubelet struct {
    	kubeletConfiguration kubeletconfiginternal.KubeletConfiguration
    
    	// hostname is the hostname the kubelet detected or was given via flag/config
    	hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	// producer should stop sending events and close the result channel. The
    	// consumer should keep watching for events until the result channel is
    	// closed.
    	//
    	// Because some implementations may create channels when constructed, Stop
    	// must always be called, even if the consumer has not yet called
    	// ResultChan().
    	//
    	// Only the consumer should call Stop(), not the producer. If the producer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  6. cluster/gce/gci/configure-helper.sh

          fi
          params+=" --proxy-mode=ipvs --ipvs-sync-period=1m --ipvs-min-sync-period=10s"
          ;;
        nftables)
          # Pass --conntrack-tcp-be-liberal so we can test that this makes the
          # "proxy implementation should not be vulnerable to the invalid conntrack state bug"
          # test pass. https://issues.k8s.io/122663#issuecomment-1885024015
          params+=" --proxy-mode=nftables --conntrack-tcp-be-liberal"
          ;;
      esac
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                },
                "description": "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. Requests cannot exceed Limits. More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/",
                "type": "object"
              }
            },
            "type": "object"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		ignoreNotFound:    true,
    		expectNotFoundErr: false,
    		expectedOut:       &example.Pod{},
    	}}
    
    	for _, tt := range tests {
    		tt := tt
    		t.Run(tt.name, func(t *testing.T) {
    			// For some asynchronous implementations of storage interface (in particular watchcache),
    			// certain requests may impact result of further requests. As an example, if we first
    			// ensure that watchcache is synchronized up to ResourceVersion X (using Get/List requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/events.go

    	BackoffComplete = "BackoffComplete"
    	// ForceActivate is the event when a pod is moved from unschedulablePods/backoffQ
    	// to activeQ. Usually it's triggered by plugin implementations.
    	ForceActivate = "ForceActivate"
    	// PodUpdate is the event when a pod is updated
    	PodUpdate = "PodUpdate"
    )
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. cluster/gce/upgrade.sh

      #                 compatible way?
      write-linux-node-env
    
      # TODO(zmerlynn): Get configure-vm script from ${version}. (Must plumb this
      #                 through all create-linux-node-instance-template implementations).
      local template_name
      template_name=$(get-template-name-from-version "${SANITIZED_VERSION}" "${NODE_INSTANCE_PREFIX}")
      create-linux-node-instance-template "${template_name}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top