Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 561 for Pods (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/mapper_test.go

    	}
    
    	kindsToRegister := []struct {
    		gvr         schema.GroupVersionResource
    		subresource string
    		gvk         schema.GroupVersionKind
    	}{
    		// pods
    		{gvr("", "v1", "pods"), "", gvk("", "v1", "Pod")},
    		// pods/status
    		{gvr("", "v1", "pods"), "status", gvk("", "v1", "Pod")},
    		// deployments
    		{gvr("apps", "v1", "deployments"), "", gvk("apps", "v1", "Deployment")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/status.go

    			c.enqueueAll()
    		}
    	}))
    	// For pods, we enqueue all Ingress if its part of the ingress service
    	c.pods.AddEventHandler(controllers.ObjectHandler(func(o controllers.Object) {
    		if c.meshConfig.Mesh().IngressService != "" {
    			// Ingress Service takes precedence
    			return
    		}
    		ingressSelector := c.meshConfig.Mesh().IngressSelector
    
    		// get all pods acting as ingress gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. cluster/log-dump/logexporter-daemonset.yaml

    # Creates everything within 'logexporter' namespace.
    #
    # Note: Since daemonsets have "AlwaysRestart" policy for pods, we provide a long
    # sleep-duration (24 hr) to the logexporter pods so they don't finish the work and
    # get restarted while some pods are still running. So it is your duty to detect
    # the work has been done (or use some timeout) and delete the daemonset yourself.
    
    apiVersion: v1
    kind: Namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 25 13:45:49 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/values.yaml

        resourceQuotas:
          enabled: false
          pods: 5000
    
        # The number of pods that can be unavailable during rolling update (see
        # `updateStrategy.rollingUpdate.maxUnavailable` here:
        # https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
        # May be specified as a number of pods or as a percent of the total number
        # of pods at the start of the update.
        rollingMaxUnavailable: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kube/krt/index_test.go

    )
    
    func TestIndex(t *testing.T) {
    	c := kube.NewFakeClient()
    	kpc := kclient.New[*corev1.Pod](c)
    	pc := clienttest.Wrap(t, kpc)
    	pods := krt.WrapClient[*corev1.Pod](kpc)
    	stop := test.NewStop(t)
    	c.RunAndWait(stop)
    	SimplePods := SimplePodCollection(pods)
    	tt := assert.NewTracker[string](t)
    	IPIndex := krt.NewIndex[SimplePod, string](SimplePods, func(o SimplePod) []string {
    		return []string{o.IP}
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. pkg/apis/policy/v1beta1/conversion.go

    		// If the v1beta1 version has a non-nil but empty selector, it should be
    		// selecting no pods, even when used with the internal or v1 api. We
    		// add a selector that is non-empty but will never match any pods.
    		out.Spec.Selector = policy.NonV1beta1MatchNoneSelector.DeepCopy()
    	case apiequality.Semantic.DeepEqual(in.Spec.Selector, policy.V1beta1MatchAllSelector):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/metricstatus.go

    	return b
    }
    
    // WithPods sets the Pods field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Pods field is set to the value of the last call.
    func (b *MetricStatusApplyConfiguration) WithPods(value *PodsMetricStatusApplyConfiguration) *MetricStatusApplyConfiguration {
    	b.Pods = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/metricstatus.go

    	return b
    }
    
    // WithPods sets the Pods field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Pods field is set to the value of the last call.
    func (b *MetricStatusApplyConfiguration) WithPods(value *PodsMetricStatusApplyConfiguration) *MetricStatusApplyConfiguration {
    	b.Pods = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/populator/desired_state_of_world_populator.go

    	pods, err := dswp.podLister.List(labels.Everything())
    	if err != nil {
    		logger.Error(err, "PodLister List failed")
    		return
    	}
    	dswp.timeOfLastListPods = time.Now()
    
    	for _, pod := range pods {
    		if volutil.IsPodTerminated(pod, pod.Status) {
    			// Do not add volumes for terminated pods
    			continue
    		}
    		util.ProcessPodVolumes(logger, pod, true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/sidecar/selector.go

    		Inputs: []config.GroupVersionKind{
    			gvk.Sidecar,
    			gvk.Pod,
    			gvk.Namespace,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *SelectorAnalyzer) Analyze(c analysis.Context) {
    	podsToSidecars := make(map[resource.FullName][]*resource.Instance)
    	pods := make(map[resource.FullName]*resource.Instance)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top