Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,369 for Pods (0.17 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			otherNodes = append(otherNodes, node)
    			otherNodesStr = append(otherNodesStr, string(node))
    		}
    	}
    
    	// Get list of pods that use the volume on the other nodes.
    	pods := rc.desiredStateOfWorld.GetVolumePodsOnNodes(otherNodes, volumeToAttach.VolumeName)
    	if len(pods) == 0 {
    		// We did not find any pods that requests the volume. The pod must have been deleted already.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

        verbs: ["get", "update", "patch", "delete"]
      # accessing & modifying cluster state (nodes & pods)
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["get", "list", "watch", "update", "patch"]
      - apiGroups: [""]
        resources: ["pods"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["pods/eviction"]
        verbs: ["create"]
      # read-only access to cluster state
      - apiGroups: [""]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    			handler.HandlePodUpdates(u.Pods)
    		case kubetypes.REMOVE:
    			klog.V(2).InfoS("SyncLoop REMOVE", "source", u.Source, "pods", klog.KObjSlice(u.Pods))
    			handler.HandlePodRemoves(u.Pods)
    		case kubetypes.RECONCILE:
    			klog.V(4).InfoS("SyncLoop RECONCILE", "source", u.Source, "pods", klog.KObjSlice(u.Pods))
    			handler.HandlePodReconcile(u.Pods)
    		case kubetypes.DELETE:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/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)
  5. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2/metricspec.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 *MetricSpecApplyConfiguration) WithPods(value *PodsMetricSourceApplyConfiguration) *MetricSpecApplyConfiguration {
    	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)
  6. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta1/metricspec.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 *MetricSpecApplyConfiguration) WithPods(value *PodsMetricSourceApplyConfiguration) *MetricSpecApplyConfiguration {
    	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)
  7. pkg/kubelet/userns/userns_manager_test.go

    		runningPods          []*kubecontainer.Pod
    		pods                 []*v1.Pod
    		listPods             []types.UID /* pods to list */
    		podSetBeforeCleanup  []types.UID /* pods to record before cleanup */
    		podSetAfterCleanup   []types.UID /* pods set expected after cleanup */
    		podUnsetAfterCleanup []types.UID /* pods set expected after cleanup */
    	}{
    		{
    			name:     "no stale pods",
    			listPods: []types.UID{"pod-1", "pod-2"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/scheduler/extender.go

    			return nil, err
    		}
    		victims := &extenderv1.Victims{
    			Pods:             []*v1.Pod{},
    			NumPDBViolations: metaVictims.NumPDBViolations,
    		}
    		for _, metaPod := range metaVictims.Pods {
    			pod, err := h.convertPodUIDToPod(metaPod, nodeInfo)
    			if err != nil {
    				return nil, err
    			}
    			victims.Pods = append(victims.Pods, pod)
    		}
    		nodeNameToVictims[nodeName] = victims
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				newClusterRole("admin", newRule("*", "*", "pods", "*")),
    			},
    			roleBindings: []*rbacv1.RoleBinding{
    				newRoleBinding("ns1", "admin", bindToClusterRole, "User:admin", "Group:admins"),
    			},
    			shouldPass: []authorizer.Attributes{
    				&defaultAttributes{"admin", "", "get", "pods", "", "ns1", ""},
    			},
    			shouldFail: []authorizer.Attributes{
    				&defaultAttributes{"admin", "", "get", "pods", "status", "ns1", ""},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  10. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			args:           strings.Split("clusters invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config clusters invalid" should fail
    		},
    		{ // listeners invalid
    			args:           strings.Split("listeners invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config listeners invalid" should fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top