Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for pod3 (0.35 sec)

  1. pkg/kubelet/cm/qos_container_manager_linux.go

    	pods := m.activePods()
    	burstablePodCPURequest := int64(0)
    	reuseReqs := make(v1.ResourceList, 4)
    	for i := range pods {
    		pod := pods[i]
    		qosClass := v1qos.GetPodQOS(pod)
    		if qosClass != v1.PodQOSBurstable {
    			// we only care about the burstable qos tier
    			continue
    		}
    		req := resource.PodRequests(pod, resource.PodResourcesOptions{Reuse: reuseReqs})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. docs/pt/docs/fastapi-cli.md

    Em muitos casos você pode ter (e deveria ter) um "proxy de saída" tratando HTTPS no topo, isso dependerá de como você fará o deploy da sua aplicação, seu provedor pode fazer isso pra você ou talvez seja necessário fazer você mesmo.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    	registerBooleanParameter(constants.RepairLabelPods, false, "Controller will label pods when detecting pod broken by race condition")
    	registerStringParameter(constants.RepairLabelKey, "cni.istio.io/uninitialized",
    		"The key portion of the label which will be set by the race repair if label pods is true")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	Pods krt.Collection[*v1.Pod],
    ) krt.Collection[Waypoint] {
    	podsByNamespace := krt.NewNamespaceIndex(Pods)
    	return krt.NewCollection(Gateways, func(ctx krt.HandlerContext, gateway *v1beta1.Gateway) *Waypoint {
    		if len(gateway.Status.Addresses) == 0 {
    			// gateway.Status.Addresses should only be populated once the Waypoint's deployment has at least 1 ready pod, it should never be removed after going ready
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. samples/addons/kiali.yaml

    rules:
    - apiGroups: [""]
      resources:
      - configmaps
      - endpoints
      - pods/log
      verbs:
      - get
      - list
      - watch
    - apiGroups: [""]
      resources:
      - namespaces
      - pods
      - replicationcontrollers
      - services
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: [""]
      resources:
      - pods/portforward
      verbs:
      - create
      - post
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. samples/addons/prometheus.yaml

            target_label: namespace
          - source_labels:
            - __meta_kubernetes_service_name
            target_label: service
        - honor_labels: true
          job_name: kubernetes-pods
          kubernetes_sd_configs:
          - role: pod
          relabel_configs:
          - action: keep
            regex: true
            source_labels:
            - __meta_kubernetes_pod_annotation_prometheus_io_scrape
          - action: drop
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Added new option to the `InterPodAffinity` scheduler plugin to ignore existing
      pods` preferred inter-pod affinities if the incoming pod has no preferred inter-pod
      affinities. This option can be used as an optimization for higher scheduling throughput
      (at the cost of an occasional pod being scheduled non-optimally/violating existing
      pods preferred inter-pod affinities). To enable this scheduler option, set the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. pkg/features/kube_features.go

    	// beta: v1.26
    	//
    	// Allow users to specify handling of pod failures based on container exit codes
    	// and pod conditions.
    	JobPodFailurePolicy featuregate.Feature = "JobPodFailurePolicy"
    
    	// owner: @kannon92
    	// kep : https://kep.k8s.io/3939
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Allow users to specify recreating pods of a job only when
    	// pods have fully terminated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit.go

    func (f *Fit) isSchedulableAfterPodChange(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) {
    	originalPod, modifiedPod, err := schedutil.As[*v1.Pod](oldObj, newObj)
    	if err != nil {
    		return framework.Queue, err
    	}
    
    	if modifiedPod == nil {
    		if originalPod.Spec.NodeName == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    		},
    		Codec: codec,
    	}
    	storage, destroyFunc, err := newETCD3Storage(*cfg.ForResource(schema.GroupResource{Resource: "pods"}), nil, nil, "")
    	defer destroyFunc()
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = storage.Create(context.TODO(), "/abc", &example.Pod{}, nil, 0)
    	if err != nil {
    		t.Fatalf("Create failed: %v", err)
    	}
    }
    
    func configureTLSCerts(t *testing.T) (certFile, keyFile, caFile string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top