Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for podAdd (0.13 sec)

  1. pkg/scheduler/internal/queue/events.go

    limitations under the License.
    */
    
    package queue
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    const (
    	// PodAdd is the event when a new pod is added to API server.
    	PodAdd = "PodAdd"
    	// ScheduleAttemptFailure is the event when a schedule attempt fails.
    	ScheduleAttemptFailure = "ScheduleAttemptFailure"
    	// BackoffComplete is the event when a pod finishes backoff.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/kubelet/userns/userns_manager_switch_test.go

    	require.NoError(t, err)
    
    	for _, podUID := range pods {
    		pod := v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: podUID}}
    		userns, err := m2.GetOrCreateUserNamespaceMappings(&pod, "")
    
    		assert.NoError(t, err, "failed to record userns range for pod %v", podUID)
    		assert.Nil(t, userns, "userns range should be nil for pod %v", podUID)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/host_stats_provider.go

    }
    
    func (h hostStatsProvider) podLogMetrics(podNamespace, podName string, podUID types.UID) (metricsProviderByPath, error) {
    	podLogsDirectoryPath := kuberuntime.BuildPodLogsDirectory(h.podLogsDirectory, podNamespace, podName, podUID)
    	return h.fileMetricsByDir(podLogsDirectoryPath)
    }
    
    func (h hostStatsProvider) podContainerLogMetrics(podNamespace, podName string, podUID types.UID, containerName string) (metricsProviderByPath, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/plugin.go

    func (plugin *flexVolumePlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter(plugin.GetPluginName()), plugin.runner)
    }
    
    // newUnmounterInternal is the internal unmounter routine to clean the volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/host_stats_provider_fake.go

    		fakeStats:   fakeStats,
    		osInterface: osInterface,
    	}
    }
    
    func (f *fakeHostStatsProvider) getPodLogStats(podNamespace, podName string, podUID types.UID, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error) {
    	path := kuberuntime.BuildPodLogsDirectory("/var/log/kube/pods/", podNamespace, podName, podUID)
    	files, err := f.osInterface.ReadDir(path)
    	if err != nil {
    		return nil, err
    	}
    	var results []volume.MetricsProvider
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:57:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/podresources/server_v1alpha1_test.go

    	podresourcetest "k8s.io/kubernetes/pkg/kubelet/apis/podresources/testing"
    )
    
    func TestListPodResourcesV1alpha1(t *testing.T) {
    	podName := "pod-name"
    	podNamespace := "pod-namespace"
    	podUID := types.UID("pod-uid")
    	containerName := "container-name"
    
    	devs := []*podresourcesv1.ContainerDevices{
    		{
    			ResourceName: "resource",
    			DeviceIds:    []string{"dev0", "dev1"},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. pkg/volume/git_repo/git_repo.go

    			volName: spec.Name(),
    			podUID:  pod.UID,
    			plugin:  plugin,
    		},
    		pod:      *pod,
    		source:   spec.Volume.GitRepo.Repository,
    		revision: spec.Volume.GitRepo.Revision,
    		target:   spec.Volume.GitRepo.Directory,
    		exec:     exec.New(),
    		opts:     opts,
    	}, nil
    }
    
    func (plugin *gitRepoPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pkg/volume/secret/secret.go

    	}, nil
    }
    
    func (plugin *secretPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return &secretVolumeUnmounter{
    		&secretVolume{
    			volName,
    			podUID,
    			plugin,
    			plugin.host.GetMounter(plugin.GetPluginName()),
    			volume.NewCachedMetrics(volume.NewMetricsDu(getPath(podUID, volName, plugin.host))),
    		},
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pkg/kubelet/server/auth_test.go

    	// Path -> ExpectedSubresource
    	testPaths := map[string]string{
    		"/attach/{podNamespace}/{podID}/{containerName}":       "proxy",
    		"/attach/{podNamespace}/{podID}/{uid}/{containerName}": "proxy",
    		"/checkpoint/{podNamespace}/{podID}/{containerName}":   "checkpoint",
    		"/configz": "proxy",
    		"/containerLogs/{podNamespace}/{podID}/{containerName}": "proxy",
    		"/debug/flags/v":                                     "proxy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/claiminfo.go

    }
    
    // addPodReference adds a pod reference to the claim info.
    func (info *ClaimInfo) addPodReference(podUID types.UID) {
    	info.PodUIDs.Insert(string(podUID))
    }
    
    // hasPodReference checks if a pod reference exists in the claim info.
    func (info *ClaimInfo) hasPodReference(podUID types.UID) bool {
    	return info.PodUIDs.Has(string(podUID))
    }
    
    // deletePodReference deletes a pod reference from the claim info.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top