Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for podB (0.06 sec)

  1. pkg/controller/statefulset/stateful_pod_control.go

    	_, err := om.client.CoreV1().Pods(pod.Namespace).Create(ctx, pod, metav1.CreateOptions{})
    	return err
    }
    
    func (om *realStatefulPodControlObjectManager) GetPod(namespace, podName string) (*v1.Pod, error) {
    	return om.podLister.Pods(namespace).Get(podName)
    }
    
    func (om *realStatefulPodControlObjectManager) UpdatePod(pod *v1.Pod) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns_test.go

               pods insecure
               upstream
               fallthrough in-addr.arpa ip6.arpa
               ttl 30
            }
            health
        }
    `,
    			expectedCorefileData: `.:53 {
        errors
        health {
           lameduck 5s
        }
        ready
        kubernetes cluster.local in-addr.arpa ip6.arpa {
           pods insecure
           fallthrough in-addr.arpa ip6.arpa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/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
    - 21.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

        level: Warning
        description: "The Istio proxy image of the pods running in the namespace do not match the image defined in the injection configuration."
        template: "The Istio proxy images of the pods running in the namespace do not match the image defined in the injection configuration (pod names: %v). This often happens after upgrading the Istio control-plane and can be fixed by redeploying the pods."
        args:
          - name: podNames
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pkg/kubelet/container/runtime.go

    		if c.ID == id {
    			return c
    		}
    	}
    	return nil
    }
    
    // ToAPIPod converts Pod to v1.Pod. Note that if a field in v1.Pod has no
    // corresponding field in Pod, the field would not be populated.
    func (p *Pod) ToAPIPod() *v1.Pod {
    	var pod v1.Pod
    	pod.UID = p.ID
    	pod.Name = p.Name
    	pod.Namespace = p.Namespace
    
    	for _, c := range p.Containers {
    		var container v1.Container
    		container.Name = c.Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller.go

    	}
    	c.serviceQueue.AddAfter(key, delay)
    }
    
    func (c *Controller) addPod(obj interface{}) {
    	pod := obj.(*v1.Pod)
    	services, err := endpointsliceutil.GetPodServiceMemberships(c.serviceLister, pod)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Unable to get pod %s/%s's service memberships: %v", pod.Namespace, pod.Name, err))
    		return
    	}
    	for key := range services {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/ztunnelserver.go

    }
    
    type ztunnelServer struct {
    	listener *net.UnixListener
    
    	// connections to pod delivered map
    	// add pod goes to newest connection
    	// delete pod goes to all connections
    	conns *connMgr
    	pods  PodNetnsCache
    }
    
    var _ ZtunnelServer = &ztunnelServer{}
    
    func newZtunnelServer(addr string, pods PodNetnsCache) (*ztunnelServer, error) {
    	if addr == "" {
    		return nil, fmt.Errorf("addr cannot be empty")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. pkg/kubelet/server/server.go

    		response.WriteError(http.StatusBadRequest, err)
    		return
    	}
    }
    
    // encodePods creates an v1.PodList object from pods and returns the encoded
    // PodList.
    func encodePods(pods []*v1.Pod) (data []byte, err error) {
    	podList := new(v1.PodList)
    	for _, pod := range pods {
    		podList.Items = append(podList.Items, *pod)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  9. samples/addons/kiali.yaml

    rules:
    - apiGroups: [""]
      resources:
      - configmaps
      - endpoints
      - pods/log
      verbs:
      - get
      - list
      - watch
    - apiGroups: [""]
      resources:
      - namespaces
      - pods
      - replicationcontrollers
      - services
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: [""]
      resources:
      - pods/portforward
      verbs:
      - create
      - post
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_volumes.go

    func (kl *Kubelet) cleanupOrphanedPodDirs(pods []*v1.Pod, runningPods []*kubecontainer.Pod) error {
    	allPods := sets.New[string]()
    	for _, pod := range pods {
    		allPods.Insert(string(pod.UID))
    	}
    	for _, pod := range runningPods {
    		allPods.Insert(string(pod.ID))
    	}
    
    	found, err := kl.listPodsFromDisk()
    	if err != nil {
    		return err
    	}
    
    	orphanRemovalErrors := []error{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top