Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,369 for Pods (0.08 sec)

  1. tools/bug-report/pkg/cluster/cluster.go

    	for _, eld := range config.Exclude {
    		if len(eld.Namespaces) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Namespaces, pod.Namespace) {
    				return true
    			}
    		}
    		if len(eld.Pods) > 0 {
    			if isIncludeOrExcludeEntriesMatched(eld.Pods, pod.Name) {
    				return true
    			}
    		}
    		if len(eld.Containers) > 0 {
    			for _, c := range pod.Spec.Containers {
    				if isIncludeOrExcludeEntriesMatched(eld.Containers, c.Name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (1)
  2. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

          operator: NotIn
          values:
          - "false"
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod-test-dev2
          namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. manifests/charts/istio-operator/templates/clusterrole.yaml

      resources:
      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "maxUnavailable": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. pkg/kubelet/container/cache.go

    		if cachedVal, ok := c.pods[id]; ok && cachedVal.modified.After(timestamp) {
    			return false
    		}
    	}
    
    	c.pods[id] = &data{status: status, err: err, modified: timestamp}
    	c.notify(id, timestamp)
    	return true
    }
    
    // Delete removes the entry of the pod.
    func (c *cache) Delete(id types.UID) {
    	c.lock.Lock()
    	defer c.lock.Unlock()
    	delete(c.pods, id)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. pkg/controller/deployment/recreate.go

    }
    
    // oldPodsRunning returns whether there are old pods running or any of the old ReplicaSets thinks that it runs pods.
    func oldPodsRunning(newRS *apps.ReplicaSet, oldRSs []*apps.ReplicaSet, podMap map[types.UID][]*v1.Pod) bool {
    	if oldPods := util.GetActualReplicaCountForReplicaSets(oldRSs); oldPods > 0 {
    		return true
    	}
    	for rsUID, podList := range podMap {
    		// If the pods belong to the new ReplicaSet, ignore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. pkg/apis/batch/types.go

    	// Specifies the maximum desired number of pods the job should
    	// run at any given time. The actual number of pods running in steady state will
    	// be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism),
    	// i.e. when the work left to do is less than max parallelism.
    	// +optional
    	Parallelism *int32
    
    	// Specifies the desired number of successfully finished pods the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_getters.go

    }
    
    // GetPods returns all pods bound to the kubelet and their spec, and the mirror
    // pods.
    func (kl *Kubelet) GetPods() []*v1.Pod {
    	pods := kl.podManager.GetPods()
    	// a kubelet running without apiserver requires an additional
    	// update of the static pod status. See #57106
    	for i, p := range pods {
    		if kubelettypes.IsStaticPod(p) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1/generated.proto

    message NetworkPolicyPeer {
      // podSelector is a label selector which selects pods. This field follows standard label
      // selector semantics; if present but empty, it selects all pods.
      //
      // If namespaceSelector is also set, then the NetworkPolicyPeer as a whole selects
      // the pods matching podSelector in the Namespaces selected by NamespaceSelector.
      // Otherwise it selects the pods matching podSelector in the policy's own namespace.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    	GetResource() schema.GroupVersionResource
    	// GetSubresource is the name of the subresource being requested.  This is a different resource, scoped to the parent resource, but it may have a different kind.
    	// For instance, /pods has the resource "pods" and the kind "Pod", while /pods/foo/status has the resource "pods", the sub resource "status", and the kind "Pod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
Back to top