Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for addRow (0.15 sec)

  1. cluster/addons/metrics-server/metrics-server-deployment.yaml

              periodSeconds: 10
              failureThreshold: 3
            volumeMounts:
            - mountPath: /tmp
              name: tmp-dir
          - name: metrics-server-nanny
            image: registry.k8s.io/autoscaling/addon-resizer:1.8.14
            resources:
              limits:
                cpu: 100m
                memory: 300Mi
              requests:
                cpu: 5m
                memory: 50Mi
            env:
              - name: MY_POD_NAME
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ads.go

    	// a better choice, it introduces a race condition; If we complete initialization of a new push
    	// context between initializeProxy and addCon, we would not get any pushes triggered for the new
    	// push context, leading the proxy to have a stale state until the next full push.
    	s.addCon(con.ID(), con)
    	// Register that initialization is complete. This triggers to calls that it is safe to access the
    	// proxy
    	defer con.MarkInitialized()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller.go

    	})
    	c.serviceLister = serviceInformer.Lister()
    	c.servicesSynced = serviceInformer.Informer().HasSynced
    
    	podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    c.addPod,
    		UpdateFunc: c.updatePod,
    		DeleteFunc: c.deletePod,
    	})
    	c.podLister = podInformer.Lister()
    	c.podsSynced = podInformer.Informer().HasSynced
    
    	c.nodeLister = nodeInformer.Lister()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/types.go

    		n.PodsWithRequiredAntiAffinity = append(n.PodsWithRequiredAntiAffinity, podInfo)
    	}
    	n.update(podInfo.Pod, 1)
    }
    
    // AddPod is a wrapper around AddPodInfo.
    func (n *NodeInfo) AddPod(pod *v1.Pod) {
    	// ignore this err since apiserver doesn't properly validate affinity terms
    	// and we can't fix the validation for backwards compatibility.
    	podInfo, _ := NewPodInfo(pod)
    	n.AddPodInfo(podInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_test.go

    	om.setsIndexer.Add(set1)
    	om.setsIndexer.Add(set2)
    
    	ssc.addPod(logger, pod1)
    	key, done := ssc.queue.Get()
    	if key == "" || done {
    		t.Error("failed to enqueue StatefulSet")
    	} else if expectedKey, _ := controller.KeyFunc(set1); expectedKey != key {
    		t.Errorf("expected StatefulSet key %s found %s", expectedKey, key)
    	}
    	ssc.queue.Done(key)
    
    	ssc.addPod(logger, pod2)
    	key, done = ssc.queue.Get()
    	if key == "" || done {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. pkg/controller/disruption/disruption.go

    	dc.enqueuePdb(logger, pdb)
    }
    
    func (dc *DisruptionController) addPod(logger klog.Logger, obj interface{}) {
    	pod := obj.(*v1.Pod)
    	logger.V(4).Info("AddPod called on pod", "pod", klog.KObj(pod))
    	pdb := dc.getPdbForPod(logger, pod)
    	if pdb == nil {
    		logger.V(4).Info("No matching PDB for pod", "pod", klog.KObj(pod))
    	} else {
    		logger.V(4).Info("addPod -> PDB", "pod", klog.KObj(pod), "podDisruptionBudget", klog.KObj(pdb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller.go

    	})
    	e.serviceLister = serviceInformer.Lister()
    	e.servicesSynced = serviceInformer.Informer().HasSynced
    
    	podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc:    e.addPod,
    		UpdateFunc: e.updatePod,
    		DeleteFunc: e.deletePod,
    	})
    	e.podLister = podInformer.Lister()
    	e.podsSynced = podInformer.Informer().HasSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	TimeoutForControlPlane *metav1.Duration
    }
    
    // DNS defines the DNS addon that should be used in the cluster
    type DNS struct {
    	// ImageMeta allows to customize the image used for the DNS addon
    	ImageMeta `json:",inline"`
    
    	// Disabled specifies whether to disable this addon in the cluster
    	Disabled bool
    }
    
    // Proxy defines the proxy addon that should be used in the cluster
    type Proxy struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. cluster/addons/dns/kube-dns/kube-dns.yaml.base

      namespace: kube-system
      labels:
        k8s-app: kube-dns
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      # replicas: not specified here:
      # 1. In order to make Addon Manager do not reconcile this replicas parameter.
      # 2. Default is 1.
      # 3. Will be tuned in real time if DNS horizontal auto-scaling is turned on.
      strategy:
        rollingUpdate:
          maxSurge: 10%
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework_test.go

    			t.Errorf("preFilter2 called %v, expected: 1", preFilter2.PreFilterCalled)
    		}
    		if preFilter2.AddCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.AddCalled)
    		}
    		if preFilter2.RemoveCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.RemoveCalled)
    		}
    	})
    }
    
    func TestRunPreFilterPlugins(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top