Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for podresources (0.15 sec)

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

    		}
    	}
    
    	for _, container := range pod.Spec.Containers {
    		podResources.Containers = append(podResources.Containers, p.getContainerResources(pod, &container))
    	}
    
    	response := &podresourcesv1.GetPodResourcesResponse{
    		PodResources: podResources,
    	}
    	return response, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:00:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/podresources/server_v1_test.go

    		})
    	}
    }
    
    func equalListResponse(respA, respB *podresourcesapi.ListPodResourcesResponse) bool {
    	if len(respA.PodResources) != len(respB.PodResources) {
    		return false
    	}
    	for idx := 0; idx < len(respA.PodResources); idx++ {
    		podResA := respA.PodResources[idx]
    		podResB := respB.PodResources[idx]
    		if podResA.Name != podResB.Name {
    			return false
    		}
    		if podResA.Namespace != podResB.Namespace {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/podresources/server_v1alpha1_test.go

    limitations under the License.
    */
    
    package podresources
    
    import (
    	"context"
    	"testing"
    
    	"go.uber.org/mock/gomock"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	podresourcesv1 "k8s.io/kubelet/pkg/apis/podresources/v1"
    	"k8s.io/kubelet/pkg/apis/podresources/v1alpha1"
    	podresourcetest "k8s.io/kubernetes/pkg/kubelet/apis/podresources/testing"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/container_manager.go

    	// might need to unprepare resources.
    	PodMightNeedToUnprepareResources(UID types.UID) bool
    
    	// Implements the PodResources Provider API
    	podresources.CPUsProvider
    	podresources.DevicesProvider
    	podresources.MemoryProvider
    	podresources.DynamicResourcesProvider
    }
    
    type NodeConfig struct {
    	NodeName              types.NodeName
    	RuntimeCgroupsName    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/kubelet/apis/podresources/testing/provider_mock.go

    //
    
    // Package testing is a generated GoMock package.
    package testing
    
    import (
    	reflect "reflect"
    
    	gomock "go.uber.org/mock/gomock"
    	v1 "k8s.io/api/core/v1"
    	v10 "k8s.io/kubelet/pkg/apis/podresources/v1"
    )
    
    // MockDevicesProvider is a mock of DevicesProvider interface.
    type MockDevicesProvider struct {
    	ctrl     *gomock.Controller
    	recorder *MockDevicesProviderMockRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top