Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 240 for pfds (0.04 sec)

  1. tests/integration/pilot/revisions/revision_tag_test.go

    					fetch := kubetest.NewSinglePodFetch(t.Clusters().Default(),
    						revTagNs.Name(),
    						fmt.Sprintf("app=%s", "revision-tag"))
    					pods, err := fetch()
    					if err != nil {
    						t.Fatalf("error fetching pods: %v", err)
    					}
    
    					verifyRevision(t, istioCtl, pods[0].Name, revTagNs.Name(), tc.revision)
    				})
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/revisioned_upgrade_test.go

    	pods, err := kubetest.CheckPodsAreReady(fetch)
    	if err != nil {
    		t.Fatalf("failed to retrieve upgraded pods: %v", err)
    	}
    	for _, p := range pods {
    		for _, c := range p.Spec.Containers {
    			if strings.Contains(c.Image, fromVersion) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/gateway/gateway.go

    	// not report a problem if *any* selecting service exposes the Gateway's port.
    	servicePorts := map[uint32]bool{}
    	portMapping := map[uint32]uint32{} // svc port -> svc targetPort mapping
    	gwSelectorMatches := 0
    
    	// For pods selected by gw.Selector, find Services that select them and remember those ports
    	gwSelector := klabels.SelectorFromSet(gw.Selector)
    	c.ForEach(gvk.Pod, func(rPod *resource.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/registryredirector/kube.go

    	}
    	scopes.Framework.Infof("registry redirector server address: %s", c.address)
    
    	if len(pods) == 0 {
    		return nil, fmt.Errorf("no pod was selected for selector %q", podSelector)
    	}
    
    	thePod := pods[0]
    
    	portForwarder, err := c.cluster.NewPortForwarder(thePod.Name, thePod.Namespace, "", 0, 1338)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2beta2.HorizontalPodAutoscaler.json

                      "operator": "operatorValue",
                      "values": [
                        "valuesValue"
                      ]
                    }
                  ]
                }
              }
            },
            "pods": {
              "metric": {
                "name": "nameValue",
                "selector": {
                  "matchLabels": {
                    "matchLabelsKey": "matchLabelsValue"
                  },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/autoscaling.v2.HorizontalPodAutoscaler.json

                      "operator": "operatorValue",
                      "values": [
                        "valuesValue"
                      ]
                    }
                  ]
                }
              }
            },
            "pods": {
              "metric": {
                "name": "nameValue",
                "selector": {
                  "matchLabels": {
                    "matchLabelsKey": "matchLabelsValue"
                  },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. istioctl/pkg/authz/authz.go

    	pods, err := kubeClient.GetIstioPods(context.TODO(), podNamespace, metav1.ListOptions{
    		FieldSelector: "metadata.name=" + podName,
    	})
    	if err != nil {
    		return nil, fmt.Errorf("failed to get pod: %s", err)
    	}
    	if len(pods) != 1 {
    		return nil, fmt.Errorf("expecting only 1 pod for %s.%s, found: %d", podName, podNamespace, len(pods))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. releasenotes/notes/45695.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 225 bytes
    - Viewed (0)
  9. pkg/kubelet/runonce_test.go

    		t.Errorf("Failed to init data dirs: %v", err)
    	}
    
    	pods := []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				UID:       "12345678",
    				Name:      "foo",
    				Namespace: "new",
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{Name: "bar"},
    				},
    			},
    		},
    	}
    	podManager.SetPods(pods)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. releasenotes/notes/48814.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 48814
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 14:00:48 UTC 2024
    - 338 bytes
    - Viewed (0)
Back to top