Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for podresourcesv1 (0.34 sec)

  1. pkg/kubelet/apis/podresources/client.go

    limitations under the License.
    */
    
    package podresources
    
    import (
    	"context"
    	"fmt"
    	"time"
    
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    
    	"k8s.io/cri-client/pkg/util"
    	"k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    )
    
    // Note: Consumers of the pod resources API should not be importing this package.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    // ListenAndServePodResources initializes a gRPC server to serve the PodResources service
    func ListenAndServePodResources(endpoint string, providers podresources.PodResourcesProviders) {
    	server := grpc.NewServer(apisgrpc.WithRateLimiter("podresources", podresources.DefaultQPS, podresources.DefaultBurstTokens))
    
    	podresourcesapiv1alpha1.RegisterPodResourcesListerServer(server, podresources.NewV1alpha1PodResourcesServer(providers))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			result.Fail(errResize)
    			return
    		}
    	}
    	if len(podContainerChanges.ContainersToUpdate[v1.ResourceCPU]) > 0 || podContainerChanges.UpdatePodResources {
    		if podResources.CPUQuota == nil || podResources.CPUShares == nil {
    			klog.ErrorS(nil, "podResources.CPUQuota or podResources.CPUShares is nil", "pod", pod.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. pkg/kubelet/util/util_windows.go

    const npipeProtocol = "npipe"
    
    // LocalEndpoint returns the full path to a named pipe at the given endpoint - unlike on unix, we can't use sockets.
    func LocalEndpoint(path, file string) (string, error) {
    	// extract the podresources config name from the path. We only need this on windows because the preferred layout of pipes,
    	// this is why we have the extra logic in here instead of changing the function signature. Join the file to make sure the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	m.cpuCFSQuota = true
    
    	assert.NoError(t, err)
    
    	tests := []struct {
    		name         string
    		podResources v1.ResourceRequirements
    		expected     *runtimeapi.LinuxContainerResources
    	}{
    		{
    			name: "Request 128M/1C, Limit 256M/3C",
    			podResources: v1.ResourceRequirements{
    				Requests: v1.ResourceList{
    					v1.ResourceMemory: resource.MustParse("128Mi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    }
    
    // ListenAndServePodResources runs the kubelet podresources grpc service
    func (kl *Kubelet) ListenAndServePodResources() {
    	endpoint, err := util.LocalEndpoint(kl.getPodResourcesDir(), podresources.Socket)
    	if err != nil {
    		klog.V(2).InfoS("Failed to get local endpoint for PodResources endpoint", "err", err)
    		return
    	}
    
    	providers := podresources.PodResourcesProviders{
    		Pods:             kl.podManager,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/container_manager_linux.go

    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/tools/record"
    	utilsysctl "k8s.io/component-helpers/node/util/sysctl"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	podresourcesapi "k8s.io/kubelet/pkg/apis/podresources/v1"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cadvisor"
    	"k8s.io/kubernetes/pkg/kubelet/cm/cpumanager"
    	"k8s.io/kubernetes/pkg/kubelet/cm/devicemanager"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - Enabled the `node-local` kubelet podresources API endpoint on windows, alongside unix. ([#115133](https://github.com/kubernetes/kubernetes/pull/115133), [@ffromani](https://github.com/ffromani))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Node podresources API now includes init containers with containerRestartPolicy of `Always` when `SidecarContainers` feature is enabled. ([#120718](https://github.com/kubernetes/kubernetes/pull/120718), [@gjkim42](https://github.com/gjkim42))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Extended the kubelet's PodResources API to include resources allocated in `ResourceClaims` via `DynamicResourceAllocation`. Additionally, added a new `Get()` method to query a specific pod for its resources. ([#115847](https://github.com/kubernetes/kubernetes/pull/115847), [@mos...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top