Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for pod_id (0.15 sec)

  1. pkg/volume/portworx/portworx_util.go

    //	Portworx mounts and attaches a volume to the running container. The node getting these requests needs to
    //	see the pod container mounts (specifically /var/lib/kubelet/pods/<pod_id>)
    func (util *portworxVolumeUtil) getLocalPortworxDriver(volumeHost volume.VolumeHost) (volumeapi.VolumeDriver, error) {
    	if util.portworxClient != nil {
    		// check if existing saved client is valid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    	// is not available (in particular in some multi-cluster cases)
    	return option.NewTemplateParams(opts...)
    }
    
    // substituteValues substitutes variables known to the bootstrap like pod_ip.
    // "http.{pod_ip}_" with pod_id = [10.3.3.3,10.4.4.4] --> [http.10.3.3.3_,http.10.4.4.4_]
    func substituteValues(patterns []string, varName string, values []string) []string {
    	ret := make([]string, 0, len(patterns))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net_test.go

    	var podStatus corev1.PodStatus
    	if v6IP {
    		podStatus = corev1.PodStatus{
    			PodIP:  "e9ac:1e77:90ca:399f:4d6d:ece2:2f9b:3164",
    			PodIPs: []corev1.PodIP{{IP: "e9ac:1e77:90ca:399f:4d6d:ece2:2f9b:3164"}, {IP: "e9ac:1e77:90ca:399f:4d6d:ece2:2f9b:3165"}},
    		}
    	} else {
    		podStatus = corev1.PodStatus{
    			PodIP:  "2.2.2.2",
    			PodIPs: []corev1.PodIP{{IP: "2.2.2.2"}, {IP: "3.3.3.3"}},
    		}
    	}
    
    	return &corev1.Pod{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_volumes_linux_test.go

    						Name: "pod1",
    						UID:  "pod1uid",
    					},
    				},
    			},
    			prepareFunc: func(kubelet *Kubelet) error {
    				podDir := kubelet.getPodDir("pod1uid")
    				return os.MkdirAll(filepath.Join(podDir, "volumes/plugin/name"), 0750)
    			},
    			validateFunc: func(kubelet *Kubelet) error {
    				podDir := kubelet.getPodDir("pod1uid")
    				return validateDirExists(filepath.Join(podDir, "volumes/plugin/name"))
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static.go

    }
    
    // RemoveContainer call is idempotent
    func (p *staticPolicy) RemoveContainer(s state.State, podUID string, containerName string) {
    	blocks := s.GetMemoryBlocks(podUID, containerName)
    	if blocks == nil {
    		return
    	}
    
    	klog.InfoS("RemoveContainer", "podUID", podUID, "containerName", containerName)
    	s.Delete(podUID, containerName)
    
    	// Mutate machine memory state to update free and reserved memory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server.go

    		Path("/attach")
    	ws.Route(ws.GET("/{podNamespace}/{podID}/{containerName}").
    		To(s.getAttach).
    		Operation("getAttach"))
    	ws.Route(ws.POST("/{podNamespace}/{podID}/{containerName}").
    		To(s.getAttach).
    		Operation("getAttach"))
    	ws.Route(ws.GET("/{podNamespace}/{podID}/{uid}/{containerName}").
    		To(s.getAttach).
    		Operation("getAttach"))
    	ws.Route(ws.POST("/{podNamespace}/{podID}/{uid}/{containerName}").
    		To(s.getAttach).
    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/registry/core/pod/storage/storage.go

    func (r *BindingREST) assignPod(ctx context.Context, podUID types.UID, podResourceVersion, podID string, machine string, annotations map[string]string, dryRun bool) (err error) {
    	if _, err = r.setPodHostAndAnnotations(ctx, podUID, podResourceVersion, podID, machine, annotations, dryRun); err != nil {
    		err = storeerr.InterpretGetError(err, api.Resource("pods"), podID)
    		err = storeerr.InterpretUpdateError(err, api.Resource("pods"), podID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_volumes.go

    	volumePaths, err := kl.getMountedVolumePathListFromDisk(podUID)
    	if err != nil {
    		klog.ErrorS(err, "Pod found, but error occurred during checking mounted volumes from disk", "podUID", podUID)
    		return true
    	}
    	if len(volumePaths) > 0 {
    		klog.V(4).InfoS("Pod found, but volumes are still mounted on disk", "podUID", podUID, "paths", volumePaths)
    		return true
    	}
    
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/evented.go

    			} else {
    				klog.ErrorS(err, "Evented PLEG: error generating pod status from the received event", "podUID", podID)
    			}
    		} else {
    			if klogV := klog.V(6); klogV.Enabled() {
    				klogV.InfoS("Evented PLEG: Generated pod status from the received event", "podUID", podID, "podStatus", status)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/actual_state_of_world_test.go

    	verifyPodExistsInVolumeAsw(t, podName, generatedVolumeName, "fake/device/path" /* expectedDevicePath */, asw)
    }
    
    func getTestPod(podName, podUID, outerVolumeName, pdName string) *v1.Pod {
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: podName,
    			UID:  types.UID(podUID),
    		},
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name: outerVolumeName,
    					VolumeSource: v1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top