Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for podB (0.26 sec)

  1. cni/pkg/nodeagent/net.go

    	log := log.WithLabels("ns", pod.Namespace, "name", pod.Name)
    	log.Debug("Pod is now stopped... cleaning up.")
    
    	if err := removePodFromHostNSIpset(pod, &s.hostsideProbeIPSet); err != nil {
    		log.Errorf("failed to remove pod %s from host ipset, error was: %v", pod.Name, err)
    		return err
    	}
    
    	log.Info("in pod mode - deleting pod from ztunnel")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller.go

    	return svc
    }
    
    // getPodLocality retrieves the locality for a pod.
    func (c *Controller) getPodLocality(pod *v1.Pod) string {
    	// if pod has `istio-locality` label, skip below ops
    	if len(pod.Labels[model.LocalityLabel]) > 0 {
    		return model.GetLocalityLabel(pod.Labels[model.LocalityLabel])
    	}
    
    	// NodeName is set by the scheduler after the pod is created
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.pb

    Shingo Omura <******@****.***> 1717022429 +0900
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        # Custom DNS config for the pod to resolve names of services in other
        # clusters. Use this to add additional search domains, and other settings.
        # see
        # https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#dns-config
        # This does not apply to gateway pods as they typically need a different
        # set of DNS settings than the normal application pods (e.g., in
        # multicluster scenarios).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. pkg/volume/volume.go

    // and pod device map path.
    type BlockVolume interface {
    	// GetGlobalMapPath returns a global map path which contains
    	// bind mount associated to a block device.
    	// ex. plugins/kubernetes.io/{PluginName}/{DefaultKubeletVolumeDevicesDirName}/{volumePluginDependentPath}/{pod uuid}
    	GetGlobalMapPath(spec *Spec) (string, error)
    	// GetPodDeviceMapPath returns a pod device map path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	Pods krt.Collection[*v1.Pod],
    ) krt.Collection[Waypoint] {
    	podsByNamespace := krt.NewNamespaceIndex(Pods)
    	return krt.NewCollection(Gateways, func(ctx krt.HandlerContext, gateway *v1beta1.Gateway) *Waypoint {
    		if len(gateway.Status.Addresses) == 0 {
    			// gateway.Status.Addresses should only be populated once the Waypoint's deployment has at least 1 ready pod, it should never be removed after going ready
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/types.go

    	//
    	// The following VolumeContext will be passed if podInfoOnMount is set to true.
    	// This list might grow, but the prefix will be used.
    	// "csi.storage.k8s.io/pod.name": pod.Name
    	// "csi.storage.k8s.io/pod.namespace": pod.Namespace
    	// "csi.storage.k8s.io/pod.uid": string(pod.UID)
    	// "csi.storage.k8s.io/ephemeral": "true" if the volume is an ephemeral inline volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	sc, err := m.determineEffectiveSecurityContext(pod, container, uid, username)
    	if err != nil {
    		return nil, err
    	}
    	lc := &runtimeapi.LinuxContainerConfig{
    		Resources:       m.generateLinuxContainerResources(pod, container, enforceMemoryQoS),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir.go

    		return sizeLimit
    	}
    
    	// size limit defaults to node allocatable (pods can't consume more memory than all pods)
    	sizeLimit = nodeAllocatableMemory
    	zero := resource.MustParse("0")
    
    	// determine pod resource allocation
    	// we use the same function for pod cgroup assignment to maintain consistent behavior
    	// NOTE: this could be nil on systems that do not support pod memory containment (i.e. windows)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top