Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 592 for Pods (0.47 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"currentReplicas":    "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.",
    	"desiredReplicas":    "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      //   * increase no more than 4 pods per 60 seconds
      //   * double the number of pods per 60 seconds
      // No stabilization is used.
      // +optional
      optional HPAScalingRules scaleUp = 1;
    
      // scaleDown is scaling policy for scaling Down.
      // If not set, the default value is to allow to scale down to minReplicas pods, with a
      // 300 second stabilization window (i.e., the highest recommendation for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. plugin/pkg/admission/serviceaccount/admission_test.go

    	}
    }
    
    func TestIgnoresNilObject(t *testing.T) {
    	attrs := admission.NewAttributesRecord(nil, nil, api.Kind("Pod").WithVersion("version"), "myns", "myname", api.Resource("pods").WithVersion("version"), "", admission.Create, &metav1.CreateOptions{}, false, nil)
    	handler := admissiontesting.WithReinvocationTesting(t, NewServiceAccount())
    	err := handler.Admit(context.TODO(), attrs, nil)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. pkg/controller/tainteviction/taint_eviction_test.go

    		pods, err := c.CoreV1().Pods(corev1.NamespaceAll).List(ctx, metav1.ListOptions{
    			FieldSelector: selector.String(),
    			LabelSelector: labels.Everything().String(),
    		})
    		if err != nil {
    			return []*corev1.Pod{}, fmt.Errorf("failed to get Pods assigned to node %v", nodeName)
    		}
    		rPods := make([]*corev1.Pod, len(pods.Items))
    		for i := range pods.Items {
    			rPods[i] = &pods.Items[i]
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. pkg/scheduler/metrics/metrics.go

    			Name:           "pending_pods",
    			Help:           "Number of pending pods, by the queue type. 'active' means number of pods in activeQ; 'backoff' means number of pods in backoffQ; 'unschedulable' means number of pods in unschedulablePods that the scheduler attempted to schedule and failed; 'gated' is the number of unschedulable pods that the scheduler never attempted to schedule because they are gated.",
    			StabilityLevel: metrics.STABLE,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    				rbacv1helpers.NewRule("list", "delete").Groups(legacyGroup).Resources("pods").RuleOrDie(),
    				eventsRule(),
    			},
    		}
    		if utilfeature.DefaultFeatureGate.Enabled(features.PodDisruptionConditions) {
    			role.Rules = append(role.Rules, rbacv1helpers.NewRule("get").Groups(legacyGroup).Resources("pods").RuleOrDie())
    		}
    		return role
    	}())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/pod.go

    	// just in case the proxy ID is bad formatted
    	pods := pc.getPodsByIP(proxyIP)
    	switch len(pods) {
    	case 0:
    		return nil
    	case 1:
    		return pods[0]
    	default:
    		// This should only happen with hostNetwork pods, which cannot be proxy clients...
    		log.Errorf("unexpected: found multiple pods for proxy %v (%v)", proxy.ID, proxyIP)
    		// Try to handle it gracefully
    		for _, p := range pods {
    			// At least filter out wrong namespaces...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. cni/README.md

    1. By running as a node-level daemonset that:
    
    - listens for these UDS events from the CNI plugin (which fire when new pods are spawned in an ambient-enabled namespace), and adds those pods to the ambient mesh.
    - watches k8s resource for existing pods, so that pods that have already been started can be moved in or out of the ambient mesh.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/generic_test.go

    	pleg := newTestGenericPLEGWithRuntimeMock(runtimeMock)
    	ch := pleg.Watch()
    
    	pods, statuses, events := createTestPodsStatusesAndEvents(2)
    	runtimeMock.EXPECT().GetPods(ctx, true).Return(pods, nil).AnyTimes()
    	runtimeMock.EXPECT().GetPodStatus(ctx, pods[0].ID, "", "").Return(statuses[0], nil).Times(1)
    	// Inject an error when querying runtime for the pod status for pods[1].
    	statusErr := fmt.Errorf("unable to get status")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. pkg/kubelet/preemption/preemption_test.go

    	return nil
    }
    
    type fakePodProvider struct {
    	pods []*v1.Pod
    }
    
    func newFakePodProvider() *fakePodProvider {
    	return &fakePodProvider{pods: []*v1.Pod{}}
    }
    
    func (f *fakePodProvider) setPods(pods []*v1.Pod) {
    	f.pods = pods
    }
    
    func (f *fakePodProvider) getPods() []*v1.Pod {
    	return f.pods
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
Back to top