Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for NamespaceName (0.32 sec)

  1. plugin/pkg/auth/authorizer/node/graph_test.go

    			t.Errorf("expected path from %s to cm1, got %v, %v", nodeName, ok, err)
    		}
    	}
    
    	toString := func(id int) string {
    		for _, namespaceName := range g.vertices {
    			for _, nameVertex := range namespaceName {
    				for _, vertex := range nameVertex {
    					if vertex.id == id {
    						return vertex.String()
    					}
    				}
    			}
    		}
    		return ""
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	fp.servicesSynced = true
    	fp.endpointSlicesSynced = true
    
    	// Add initial service
    	serviceName := "svc1"
    	namespaceName := "ns1"
    	fp.OnServiceAdd(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: serviceName, Namespace: namespaceName},
    		Spec: v1.ServiceSpec{
    			ClusterIP: "172.20.1.1",
    			Selector:  map[string]string{"foo": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. tests/integration/security/cacert_rotation/main_test.go

    	podID, err := getPodID(i)
    	if err != nil {
    		t.Fatalf("Could not get Pod ID: %v", err)
    	}
    	podName := fmt.Sprintf("%s.%s", podID, i.NamespaceName())
    	out, errOut, err := ctl.Invoke([]string{"pc", "s", podName, "-o", "json"})
    	if err != nil || errOut != "" {
    		t.Errorf("failed to retrieve pod secret from %s, err: %v errOut: %s", podName, err, errOut)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    						}
    					})
    				}
    			}
    		})
    }
    
    func buildQuery(src, dst echo.Instance) prometheus.Query {
    	query := prometheus.Query{}
    
    	srcns := src.NamespaceName()
    	destns := dst.NamespaceName()
    
    	labels := map[string]string{
    		"reporter":                       "waypoint",
    		"request_protocol":               "http",
    		"response_code":                  "200",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/tunneling_test.go

    	},
    }
    
    func TestTunnelingOutboundTraffic(t *testing.T) {
    	framework.
    		NewTest(t).
    		RequireIstioVersion("1.15.0").
    		Run(func(ctx framework.TestContext) {
    			meshNs := apps.A.NamespaceName()
    			externalNs := apps.External.Namespace.Name()
    
    			applyForwardProxyConfigMaps(ctx, externalNs)
    			ctx.ConfigIstio().File(externalNs, "testdata/external-forward-proxy-deployment.yaml").ApplyOrFail(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    	_, fp := NewFakeProxier(v1.IPv4Protocol)
    	fp.OnServiceSynced()
    	fp.OnEndpointSlicesSynced()
    
    	serviceName := "svc1"
    	namespaceName := "ns1"
    
    	fp.OnServiceAdd(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: serviceName, Namespace: namespaceName},
    		Spec: v1.ServiceSpec{
    			ClusterIP: "172.30.1.1",
    			Selector:  map[string]string{"foo": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/run.go

    	t.toEachDeployment(t.rootCtx, func(ctx framework.TestContext, dstInstances echo.Instances) {
    		gwInstance := gatewayInstance{
    			NamespacedName: types.NamespacedName{
    				Namespace: dstInstances.NamespaceName(),
    				Name:      dstInstances.ServiceName() + "-gateway",
    			},
    			GatewayClass: gatewayClass,
    		}
    		// Build and apply per-destination config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/common/deployment/echos.go

    					found = true
    					break
    				}
    			}
    			if !found {
    				return fmt.Errorf("custom echo deployment %s uses unconfigured namespace %s",
    					config.NamespacedName().String(), config.NamespaceName())
    			}
    		}
    	}
    
    	if len(c.Namespaces) > 0 {
    		c.NamespaceCount = len(c.Namespaces)
    	} else if c.NamespaceCount <= 0 {
    		c.NamespaceCount = 1
    	}
    
    	nsLabels := map[string]string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    	ipt := iptablestest.NewFake()
    	fp := NewFakeProxier(ipt)
    	fp.OnServiceSynced()
    	fp.OnEndpointSlicesSynced()
    
    	serviceName := "svc1"
    	namespaceName := "ns1"
    
    	fp.OnServiceAdd(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: serviceName, Namespace: namespaceName},
    		Spec: v1.ServiceSpec{
    			ClusterIP: "172.30.1.1",
    			Selector:  map[string]string{"foo": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top