Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 561 for Pods (0.11 sec)

  1. cmd/kube-controller-manager/controller-manager.go

    limitations under the License.
    */
    
    // The controller manager is responsible for monitoring replication
    // controllers, and creating corresponding pods to achieve the desired
    // state.  It uses the API to listen for new controllers and to create/delete
    // pods.
    package main
    
    import (
    	"os"
    	_ "time/tzdata" // for CronJob Time Zone support
    
    	"k8s.io/component-base/cli"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 21:33:00 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/podgccontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.TerminatedPodGCThreshold, "terminated-pod-gc-threshold", o.TerminatedPodGCThreshold, "Number of terminated pods that can exist before the terminated pod garbage collector starts deleting terminated pods. If <= 0, the terminated pod garbage collector is disabled.")
    }
    
    // ApplyTo fills up PodGCController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/README.md

    ## Troubleshooting
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 18 13:04:48 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/nodeports/node_ports.go

    func (s preFilterState) Clone() framework.StateData {
    	// The state is not impacted by adding/removing existing pods, hence we don't need to make a deep copy.
    	return s
    }
    
    // Name returns name of the plugin. It is used in logs, etc.
    func (pl *NodePorts) Name() string {
    	return Name
    }
    
    // getContainerPorts returns the used host ports of Pods: if 'port' was used, a 'port:true' pair
    // will be in the result; but it does not resolve port conflict.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 10:53:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/instance.go

    	if err := c.deployment.Restart(); err != nil {
    		return err
    	}
    
    	// Wait until all pods are ready and match the original count.
    	return retry.UntilSuccess(func() (err error) {
    		// Get the currently ready workloads.
    		workloads, err := c.workloadMgr.WaitForReadyWorkloads()
    		if err != nil {
    			return fmt.Errorf("failed waiting for restarted pods for echo %s/%s: %v",
    				c.cfg.Namespace.Name(), c.cfg.Service, err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. pkg/kubelet/configmap/configmap_manager.go

    	}
    }
    
    // NewWatchingConfigMapManager creates a manager that keeps a cache of all configmaps
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/node/v1alpha1/types.go

    // understand how the pod will be run. The RuntimeClassSpec is immutable.
    type RuntimeClassSpec struct {
    	// runtimeHandler specifies the underlying runtime and configuration that the
    	// CRI implementation will use to handle pods of this class. The possible
    	// values are specific to the node & CRI configuration.  It is assumed that
    	// all handlers are available on every node, and handlers of the same name are
    	// equivalent on every node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storageversion/manager_test.go

    			infos:    nil,
    			expected: nil,
    		},
    		{
    			infos:    []ResourceInfo{},
    			expected: []ResourceInfo{},
    		},
    		{
    			infos: []ResourceInfo{
    				{GroupResource: schema.GroupResource{Group: "", Resource: "pods"}},
    				{GroupResource: schema.GroupResource{Group: "", Resource: "nodes"}},
    				{GroupResource: schema.GroupResource{Group: "networking.k8s.io", Resource: "ingresses"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 02:34:59 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

          operator: NotIn
          values:
          - "false"
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
      sideEffects: None
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-control
          path: /inject
          port: 443
      failurePolicy: Fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/interface.go

    limitations under the License.
    */
    
    package cache
    
    import (
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // Cache collects pods' information and provides node-level aggregated information.
    // It's intended for generic scheduler to do efficient lookup.
    // Cache's operations are pod centric. It does incremental updates based on pod events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top