Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for podMap (0.28 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    					EnableServiceLinks: tc.enableServiceLinks,
    				},
    			}
    			podIP := ""
    			if len(tc.podIPs) > 0 {
    				podIP = tc.podIPs[0]
    			}
    			if tc.staticPod {
    				testPod.Annotations[kubetypes.ConfigSourceAnnotationKey] = "file"
    			}
    
    			result, err := kl.makeEnvironmentVariables(testPod, tc.container, podIP, tc.podIPs)
    			select {
    			case e := <-fakeRecorder.Events:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	_, _, err := registry.Update(testContext, podA.Name, rest.DefaultUpdatedObjectInfo(podA), denyCreateValidation, denyUpdateValidation, false, &metav1.UpdateOptions{})
    	if !errors.IsNotFound(err) {
    		t.Errorf("Unexpected error: %v", err)
    	}
    
    	// try to update a non-existing node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    				// Primary IP is not set
    				if s.PodIP == "" {
    					s.PodIP = hostIPs[0].String()
    					s.PodIPs = []v1.PodIP{{IP: s.PodIP}}
    				}
    				// Secondary IP is not set #105320
    				if len(hostIPs) == 2 && len(s.PodIPs) == 1 {
    					if utilnet.IPFamilyOfString(s.PodIPs[0].IP) != utilnet.IPFamilyOf(hostIPs[1]) {
    						s.PodIPs = append(s.PodIPs, v1.PodIP{IP: hostIPs[1].String()})
    					}
    				}
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	if options.Wide {
    		nodeName := pod.Spec.NodeName
    		nominatedNodeName := pod.Status.NominatedNodeName
    		podIP := ""
    		if len(pod.Status.PodIPs) > 0 {
    			podIP = pod.Status.PodIPs[0].IP
    		}
    
    		if podIP == "" {
    			podIP = "<none>"
    		}
    		if nodeName == "" {
    			nodeName = "<none>"
    		}
    		if nominatedNodeName == "" {
    			nominatedNodeName = "<none>"
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    	condition1 := "condition1"
    	condition2 := "condition2"
    	condition3 := "condition3"
    	tests := []struct {
    		pod    api.Pod
    		expect []metav1.TableRow
    	}{
    		{
    			// Test when the NodeName and PodIP are not none
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: api.PodSpec{
    					Containers: make([]api.Container, 2),
    					NodeName:   "test1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		Namespace: "",
    	}
    	testClusterDNSDomain := "TEST"
    	kl.dnsConfigurer = dns.NewConfigurer(recorder, nodeRef, nil, nil, testClusterDNSDomain, "")
    
    	pods := []*v1.Pod{
    		podWithUIDNameNsSpec("123456789", "podA", "foo", v1.PodSpec{NodeSelector: map[string]string{"key": "A"}}),
    		podWithUIDNameNsSpec("987654321", "podB", "foo", v1.PodSpec{NodeSelector: map[string]string{"key": "B"}}),
    	}
    	// The first pod should be rejected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	for _, ipInfo := range apiPodStatus.PodIPs {
    		podStatus.IPs = append(podStatus.IPs, ipInfo.IP)
    	}
    	if len(podStatus.IPs) == 0 && len(apiPodStatus.PodIP) > 0 {
    		podStatus.IPs = []string{apiPodStatus.PodIP}
    	}
    
    	// If the pod is terminal, we don't need to continue to setup the pod
    	if apiPodStatus.Phase == v1.PodSucceeded || apiPodStatus.Phase == v1.PodFailed {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

                  protocol: TCP
                - name: gossip-udp
                  containerPort: 9094
                  protocol: UDP
              env:
                - name: POD_IP
                  valueFrom:
                    fieldRef:
                      fieldPath: status.podIP
                - name: GF_PATHS_DATA
                  value: /var/lib/grafana/
                - name: GF_PATHS_LOGS
                  value: /var/log/grafana
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top