Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 479 for Pods (0.06 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/node/v1alpha1/generated.proto

    // understand how the pod will be run. The RuntimeClassSpec is immutable.
    message RuntimeClassSpec {
      // 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: Thu Mar 28 15:34:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/server_test.go

    	server.Start(fakeCtx)
    	m := meshDataplane{
    		kubeClient: fakeClientSet,
    		netServer:  server,
    	}
    
    	err := m.AddPodToMesh(fakeCtx, pod, podIPs, "")
    	assert.NoError(t, err)
    
    	pod, err = fakeClientSet.CoreV1().Pods("test").Get(fakeCtx, "test", metav1.GetOptions{})
    	assert.NoError(t, err)
    	assert.Equal(t, len(pod.Annotations), 1)
    	assert.Equal(t, pod.Annotations[constants.AmbientRedirection], constants.AmbientRedirectionEnabled)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/scheduling/v1/generated.proto

      // value represents the integer value of this priority class. This is the actual priority that pods
      // receive when they have the name of this class in their pod spec.
      optional int32 value = 2;
    
      // globalDefault specifies whether this PriorityClass should be considered as
      // the default priority for pods that do not have any priority class.
      // Only one PriorityClass can be marked as `globalDefault`. However, if more than
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top