Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 1,369 for Pods (0.05 sec)

  1. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"suspend":                 "suspend specifies whether the Job controller should create Pods or not. If a Job is created with suspend set to true, no Pods are created by the Job controller. If a Job is suspended after creation (i.e. the flag goes from false to true), the Job controller will delete all active Pods associated with this Job. Users must design their workload to gracefully handle this. Suspending a Job will reset the StartTime field of...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. releasenotes/notes/50804.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 50736
    releaseNotes:
    - |
      **Added** Allow pods to be opted out of ambient capture using the `istio.io/dataplane-mode=none` label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 387 bytes
    - Viewed (0)
  3. releasenotes/notes/48603.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 02:28:57 UTC 2024
    - 198 bytes
    - Viewed (0)
  4. tests/integration/pilot/multicluster_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(deps.Items) == 0 {
    				t.Skip("no deployments with label app=istiod")
    			}
    			pods := primary.Kube().CoreV1().Pods(ns)
    			podMeta := deps.Items[0].Spec.Template.ObjectMeta
    			podMeta.Name = pod
    			template := deps.Items[0].Spec.Template.Spec
    			for _, container := range template.Containers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pkg/apis/core/resource.go

    }
    
    // Storage returns the Storage limit if specified.
    func (rl *ResourceList) Storage() *resource.Quantity {
    	return rl.Name(ResourceStorage, resource.BinarySI)
    }
    
    // Pods returns the list of pods
    func (rl *ResourceList) Pods() *resource.Quantity {
    	return rl.Name(ResourcePods, resource.DecimalSI)
    }
    
    // StorageEphemeral returns the list of ephemeral storage volumes, if any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 21:09:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. pkg/apis/networking/types.go

    	// Multiple network policies can select the same set of pods. In this case,
    	// the ingress rules for each are combined additively.
    	// This field is NOT optional and follows standard label selector semantics.
    	// An empty podSelector matches all pods in this namespace.
    	PodSelector metav1.LabelSelector
    
    	// ingress is a list of ingress rules to be applied to the selected pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  7. pkg/kubelet/eviction/types.go

    // statsFunc returns the usage stats if known for an input pod.
    type statsFunc func(pod *v1.Pod) (statsapi.PodStats, bool)
    
    // rankFunc sorts the pods in eviction order
    type rankFunc func(pods []*v1.Pod, stats statsFunc)
    
    // signalObservation is the observed resource usage
    type signalObservation struct {
    	// The resource capacity
    	capacity *resource.Quantity
    	// The available resource
    	available *resource.Quantity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/testsupport.go

    			return err
    		}
    	}
    
    	// Collect pods from test run. For the majority of cases we would
    	// expect to see a single pod here, but allow for multiple pods in
    	// case the test harness is doing extra work to collect data files
    	// from builds that it kicks off as part of the testing.
    	podlist, err := pods.CollectPods([]string{dir}, false)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime_cache_test.go

    	ctx := context.Background()
    	runtime := &ctest.FakeRuntime{}
    	cache := NewTestRuntimeCache(runtime)
    
    	// Cache old pods.
    	oldpods := []*ctest.FakePod{{Pod: &Pod{ID: "1111"}}}
    	runtime.PodList = oldpods
    	cache.UpdateCacheWithLock()
    
    	// Update the runtime to new pods.
    	newpods := []*ctest.FakePod{{Pod: &Pod{ID: "1111"}}, {Pod: &Pod{ID: "2222"}}, {Pod: &Pod{ID: "3333"}}}
    	runtime.PodList = newpods
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/resource.go

    }
    
    // Storage returns the Storage limit if specified.
    func (rl *ResourceList) Storage() *resource.Quantity {
    	return rl.Name(ResourceStorage, resource.BinarySI)
    }
    
    // Pods returns the list of pods
    func (rl *ResourceList) Pods() *resource.Quantity {
    	return rl.Name(ResourcePods, resource.DecimalSI)
    }
    
    // StorageEphemeral returns the list of ephemeral storage volumes, if any
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 21:09:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top