Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,489 for nameslice (0.36 sec)

  1. tests/integration/pilot/analyze_test.go

    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			g := NewWithT(t)
    
    			ns1 := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "istioctl-analyze-1",
    				Inject: true,
    			})
    			ns2 := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "istioctl-analyze-2",
    				Inject: true,
    			})
    
    			applyFileOrFail(t, ns1.Name(), gatewayFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    					log.Debugf("Switch selected namespace policy to %s.%s (%v)", cfg.Name, cfg.Namespace, cfg.CreationTimestamp)
    					namespaceCfg = cfg
    				}
    			}
    		} else if cfg.Namespace != rootNamespace {
    			if workloadCfg == nil || cfg.CreationTimestamp.Before(&workloadCfg.CreationTimestamp) {
    				log.Debugf("Switch selected workload policy to %s.%s (%v)", cfg.Name, cfg.Namespace, cfg.CreationTimestamp)
    				workloadCfg = cfg
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/conversion_test.go

    	}
    }
    
    func TestServiceConversionWithEmptyServiceAccountsAnnotation(t *testing.T) {
    	serviceName := "service1"
    	namespace := "default"
    
    	ip := "10.0.0.1"
    
    	localSvc := corev1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        serviceName,
    			Namespace:   namespace,
    			Annotations: map[string]string{},
    		},
    		Spec: corev1.ServiceSpec{
    			ClusterIP: ip,
    			Ports: []corev1.ServicePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    			tc.endpoints.Name = endpointsName
    			tc.endpoints.Namespace = namespace
    			esController.endpointsStore.Add(tc.endpoints)
    			if tc.service != nil {
    				tc.service.Name = endpointsName
    				tc.service.Namespace = namespace
    				esController.serviceStore.Add(tc.service)
    			}
    
    			for _, epSlice := range tc.endpointSlices {
    				epSlice.Namespace = namespace
    				esController.endpointSliceStore.Add(epSlice)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/echos.go

    		c.Namespaces = make([]namespace.Getter, c.NamespaceCount)
    		if c.NamespaceCount == 1 {
    			// If only using a single namespace, preserve the "echo" prefix.
    			g.Go(func() error {
    				ns, err := namespace.New(ctx, namespace.Config{
    					Inject: !ctx.Settings().AmbientEverywhere,
    					Prefix: "echo",
    					Labels: nsLabels,
    				})
    				if err != nil {
    					return err
    				}
    				c.Namespaces[0] = namespace.Future(&ns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook_test.go

    			meta: metav1.ObjectMeta{
    				Name:        "no-policy",
    				Namespace:   "test-namespace",
    				Annotations: map[string]string{},
    			},
    			want: true,
    		},
    		{
    			config: &Config{
    				Policy: InjectionPolicyEnabled,
    			},
    			podSpec: podSpec,
    			meta: metav1.ObjectMeta{
    				Name:      "default-policy",
    				Namespace: "test-namespace",
    			},
    			want: true,
    		},
    		{
    			config: &Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  7. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	framework.NewTest(t).
    		RequireIstioVersion("1.11").
    		Run(func(t framework.TestContext) {
    			serviceA = match.ServiceName(echo.NamespacedName{Name: common.ServiceA, Namespace: echos.Namespace})
    			serviceB = match.ServiceName(echo.NamespacedName{Name: common.ServiceB, Namespace: echos.Namespace})
    			// Don't export service B in any cluster. All requests should stay in-cluster.
    			for _, ht := range hostTypes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/extensionprovider_test.go

    				Service: "collector.namespace.svc",
    				Port:    4317,
    			},
    			valid: true,
    		},
    		{
    			name: "service with namespace",
    			provider: &meshconfig.MeshConfig_ExtensionProvider_OpenTelemetryTracingProvider{
    				Service: "namespace/collector.namespace.svc",
    				Port:    4317,
    			},
    			valid: true,
    		},
    		{
    			name: "service with invalid namespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    				if err != nil {
    					t.Fatalf("Unexpected error in getting the namespace: %v", err)
    				}
    				ns, ok := obj.(*v1.Namespace)
    				if !ok {
    					t.Fatalf("Expected a namespace but received %v", obj)
    				}
    				if ns.Status.Phase != testInput.expectStatus.Phase {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

          "uid": "Kubernetes//Pod/bookinfo/namespace-istio-waypoint-d94944bf6-z89g2",
          "name": "namespace-istio-waypoint-d94944bf6-z89g2",
          "namespace": "bookinfo",
          "trustDomain": "cluster.local",
          "serviceAccount": "namespace-istio-waypoint",
          "workloadName": "namespace-istio-waypoint",
          "workloadType": "deployment",
          "canonicalName": "namespace-istio-waypoint",
          "canonicalRevision": "latest",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top