Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 279 for Pods (0.04 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    	images, err := im.runtime.ListImages(ctx)
    	if err != nil {
    		return imagesInUse, err
    	}
    	pods, err := im.runtime.GetPods(ctx, true)
    	if err != nil {
    		return imagesInUse, err
    	}
    
    	// Make a set of images in use by containers.
    	for _, pod := range pods {
    		for _, container := range pod.Containers {
    			if !isRuntimeClassInImageCriAPIEnabled {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/go/build/deps_test.go

    	< internal/trace/traceviewer;
    
    	# Coverage.
    	FMT, crypto/md5, encoding/binary, regexp, sort, text/tabwriter,
    	internal/coverage, internal/coverage/uleb128
    	< internal/coverage/cmerge,
    	  internal/coverage/pods,
    	  internal/coverage/slicereader,
    	  internal/coverage/slicewriter;
    
    	internal/coverage/slicereader, internal/coverage/slicewriter
    	< internal/coverage/stringtab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. pkg/kube/inject/inject_test.go

    			if c.expectedError != "" || c.skipWebhook {
    				return
    			}
    			// Next run the webhook test. This one is a bit trickier as the webhook operates
    			// on Pods, but the inputs are Deployments/StatefulSets/etc. As a result, we need
    			// to convert these to pods, then run the injection This test will *not*
    			// overwrite golden files, as we do not have identical textual output as
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    		pattern = strings.Replace(pattern, "*", ".*", -1)
    		pattern = strings.Replace(pattern, "\\", "\\\\", -1)
    		return regexp.MustCompile(pattern).MatchString(path)
    	}
    	podLogsDirectory := "/var/log/pods"
    	expectedContainerLogPath := filepath.Join(podLogsDirectory, "new_bar_12345678", "foo", "0.log")
    	expectedContainerLogPathRotated := filepath.Join(podLogsDirectory, "new_bar_12345678", "foo", "0.log.20060102-150405")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/istio_ca.go

    // is mounted. If it is missing - for example old versions of K8S that don't support such tokens -
    // we will not start the cert-signing server, since pods will have no way to authenticate.
    func (s *Server) RunCA(grpc *grpc.Server) {
    	iss := trustedIssuer.Get()
    	aud := audience.Get()
    
    	token, err := os.ReadFile(securityModel.ThirdPartyJwtPath)
    	if err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Resources is a list of resources this rule applies to.
    	//
    	// For example:
    	// 'pods' means pods.
    	// 'pods/log' means the log subresource of pods.
    	// '*' means all resources, but not subresources.
    	// 'pods/*' means all subresources of pods.
    	// '*/scale' means all scale subresources.
    	// '*/*' means all resources and their subresources.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. pkg/config/constants/constants.go

    	AmbientRedirection = "ambient.istio.io/redirection"
    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    	// The presence of this annotation with this specific value indicates the pod is captured.
    	// Anything else indicates it is not.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    func TestWaypointChanges(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		getGracePeriod := func(want int64) bool {
    			pods, err := kubetest.NewPodFetch(t.AllClusters()[0], apps.Namespace.Name(), constants.GatewayNameLabel+"=waypoint")()
    			assert.NoError(t, err)
    			for _, p := range pods {
    				grace := p.Spec.TerminationGracePeriodSeconds
    				if grace != nil && *grace == want {
    					return true
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pkg/volume/plugins.go

    	// ex. plugins/kubernetes.io/{PluginName}/{DefaultKubeletVolumeDevicesDirName}/{volumePluginDependentPath}/
    	GetVolumeDevicePluginDir(pluginName string) string
    
    	// GetPodsDir returns the absolute path to a directory where all the pods
    	// information is stored
    	GetPodsDir() string
    
    	// GetPodVolumeDir returns the absolute path a directory which
    	// represents the named volume under the named plugin for the given
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/apply.go

    func PerformControlPlaneUpgrade(flags *applyFlags, client clientset.Interface, waiter apiclient.Waiter, initCfg *kubeadmapi.InitConfiguration, upgradeCfg *kubeadmapi.UpgradeConfiguration) error {
    	// OK, the cluster is hosted using static pods. Upgrade a static-pod hosted cluster
    	fmt.Printf("[upgrade/apply] Upgrading your Static Pod-hosted control plane to version %q (timeout: %v)...\n",
    		initCfg.KubernetesVersion, upgradeCfg.Timeouts.UpgradeManifests.Duration)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top