Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Se (0.02 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		// same as selector but with an additional host
    		selector1 := func() *config.Config {
    			c := httpStaticOverlay.DeepCopy()
    			se := c.Spec.(*networking.ServiceEntry)
    			se.Hosts = append(se.Hosts, "selector1.com")
    			se.Endpoints = nil
    			se.WorkloadSelector = &networking.WorkloadSelector{
    				Labels: map[string]string{"app": "wle"},
    			}
    			return &c
    		}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	// Erroneous cases.
    	{"%[d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%]d", SE{2, 1}, "%!](int=2)d%!(EXTRA int=1)"},
    	{"%[]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[-3]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[99]d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%[3]", SE{2, 1}, "%!(NOVERB)"},
    	{"%[1].2d", SE{5, 6}, "%!d(BADINDEX)"},
    	{"%[1]2d", SE{2, 1}, "%!d(BADINDEX)"},
    	{"%3.[2]d", SE{7}, "%!d(BADINDEX)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    	stop := istiotest.NewStop(t)
    	go configController.Run(stop)
    
    	se := serviceentry.NewController(configController, xdsUpdater, meshWatcher)
    	client.RunAndWait(stop)
    
    	kc.AppendWorkloadHandler(se.WorkloadInstanceHandler)
    	se.AppendWorkloadHandler(kc.WorkloadInstanceHandler)
    
    	go kc.Run(stop)
    	go se.Run(stop)
    
    	return configController, client.Kube(), xdsUpdater
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	epAddresses []string,
    ) {
    	t.Helper()
    
    	se := &apiv1alpha3.ServiceEntry{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      name,
    			Namespace: ns,
    			Labels:    labels,
    		},
    		Spec:   *generateServiceEntry(hostStr, addresses, labels, epAddresses),
    		Status: v1alpha1.IstioStatus{},
    	}
    	s.se.CreateOrUpdate(se)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_tls_test.go

    				},
    				err: nil,
    			},
    		},
    		{
    			name: "tls mode SIMPLE, with SANs specified in service entries",
    			opts: &buildClusterOpts{
    				mutable:         newTestCluster(),
    				serviceAccounts: []string{"se-san.com"},
    				serviceRegistry: provider.External,
    			},
    			tls: &networking.ClientTLSSettings{
    				Mode:           networking.ClientTLSSettings_SIMPLE,
    				CaCertificates: rootCert,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

        - destination:
            host: "{{.Destination}}"
    `).ApplyOrFail(t)
    
    			cfg := config.YAML(`
    {{ $to := .To }}
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: test-se
    spec:
      hosts:
      - serviceentry.istio.io # not used
      addresses:
      - 111.111.222.222
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: {{.Resolution}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

      namespace: istio-system
    spec:
      mtls:
        mode: %s
    `, m)
    }
    
    func TestInbound(t *testing.T) {
    	svc := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se
    spec:
      hosts:
      - foo.bar
      endpoints:
      - address: 1.1.1.1
      location: MESH_INTERNAL
      resolution: STATIC
      ports:
      - name: tcp
        number: 70
        protocol: TCP
      - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    	for _, obj := range ses {
    		if obj.Meta.Name == name {
    			ns := obj.Meta.Namespace
    			if ns == "" {
    				ns = metav1.NamespaceDefault
    			}
    			if ns == namespace {
    				se := obj.Spec.(*istio.ServiceEntry)
    				return se.Hosts
    			}
    		}
    	}
    	return []string{}
    }
    
    func buildMeshAndGatewayRoutes[T any](parentRefs []routeParentReference, convertRules func(mesh bool) T) (T, T) {
    	var meshResult, gwResult T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top