Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 345 for podMap (0.1 sec)

  1. tests/integration/pilot/mirror_test.go

    					// we only apply to config clusters
    					t.ConfigIstio().EvalFile(apps.Namespace.Name(), vsc, "testdata/traffic-mirroring-template.yaml").
    						ApplyOrFail(t)
    
    					for _, podA := range apps.A {
    						podA := podA
    						t.NewSubTest(fmt.Sprintf("from %s", podA.Config().Cluster.StableName())).Run(func(t framework.TestContext) {
    							for _, proto := range mirrorProtocols {
    								t.NewSubTest(string(proto)).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/workload.go

    	return n
    }
    
    func (w *workload) Address() string {
    	w.mutex.Lock()
    	ip := w.pod.Status.PodIP
    	w.mutex.Unlock()
    	return ip
    }
    
    func (w *workload) Addresses() []string {
    	w.mutex.Lock()
    	var addresses []string
    	for _, podIP := range w.pod.Status.PodIPs {
    		addresses = append(addresses, podIP.IP)
    	}
    	w.mutex.Unlock()
    	return addresses
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. pkg/kubelet/lifecycle/handlers.go

    			return err
    		}
    		if len(status.IPs) == 0 {
    			return fmt.Errorf("failed to find networking container: %v", status)
    		}
    		host = status.IPs[0]
    		podIP = host
    	}
    
    	req, err := httpprobe.NewRequestForHTTPGetAction(handler.HTTPGet, container, podIP, "lifecycle")
    	if err != nil {
    		return err
    	}
    	resp, err := hr.httpDoer.Do(req)
    	discardHTTPRespBody(resp)
    
    	if isHTTPResponseError(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/proxyless.yaml

            - containerPort: 3333
              name: tcp-health-port
            - containerPort: 17171
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            - name: EXPOSE_GRPC_ADMIN
              value: "true"
            readinessProbe:
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/grpc-simple.yaml.injected

                  }
                }
              }' > /var/lib/grpc/data/bootstrap.json
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: POD_NAME
              valueFrom:
                fieldRef:
                  fieldPath: metadata.name
            - name: POD_NAMESPACE
              valueFrom:
                fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 10 20:56:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. docs/iam/opa.md

    OPA is enabled through MinIO's Access Management Plugin feature.
    
    ## Get started
    
    ### 1. Start OPA in a container
    
    ```sh
    podman run -it \
        --name opa \
        --publish 8181:8181 \
        docker.io/openpolicyagent/opa:0.40.0-rootless \
           run --server \
               --log-format=json-pretty \
               --log-level=debug \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    	}
    
    	// pick additional ips, if cri reported them
    	for _, podIP := range podSandbox.Network.AdditionalIps {
    		if nil == netutils.ParseIPSloppy(podIP.Ip) {
    			klog.InfoS("Pod Sandbox reported an unparseable additional IP", "pod", klog.KRef(podNamespace, podName), "IP", podIP.Ip)
    			return nil
    		}
    		podIPs = append(podIPs, podIP.Ip)
    	}
    
    	return podIPs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,5,opt,name=hostIP"`
    	// IP address allocated to the pod. Routable at least within the cluster.
    	// Empty if not yet allocated.
    	// +optional
    	PodIP string `json:"podIP,omitempty" protobuf:"bytes,6,opt,name=podIP"`
    
    	// RFC 3339 date and time at which the object was acknowledged by the Kubelet.
    	// This is before the Kubelet pulled the container image(s) for the pod.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/app/cmd.go

    			return fmt.Errorf("Invalid proxy Type: " + string(proxyArgs.Type))
    		}
    	}
    
    	podIP, _ := netip.ParseAddr(options.InstanceIPVar.Get()) // protobuf encoding of IP_ADDRESS type
    	if podIP.IsValid() {
    		// The first one must be the pod ip as we pick the first ip as pod ip in istiod.
    		proxyArgs.IPAddresses = []string{podIP.String()}
    	}
    
    	// Obtain all the IPs from the node
    	proxyAddrs := make([]string, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy_test.go

    				Status: api.PodStatus{
    					PodIPs: []api.PodIP{
    						{IP: "10.0.0.10"},
    						{IP: "10.0.0.20"},
    					},
    				},
    			},
    			expectedIP: "10.0.0.10",
    		},
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			podIP := getPodIP(tc.pod)
    			if podIP != tc.expectedIP {
    				t.Errorf("expected pod ip:%v does not match actual %v", tc.expectedIP, podIP)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top