Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for Se (0.02 sec)

  1. 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)
  2. 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)
  3. tests/integration/pilot/common/routing.go

    		skip: skip{
    			skip:   true,
    			reason: "not currently working, as SE doesn't have a VIP",
    		},
    		globalConfig: true,
    		config: fmt.Sprintf(`apiVersion: v1
    kind: Service
    metadata:
      name: b-ext-se
    spec:
      type: ExternalName
      externalName: %s`,
    			t.Apps.External.All.Config().HostHeader()),
    		children: calls("b-ext-se"),
    	})
    
    	gatewayListenPort := 80
    	gatewayListenPortName := "http"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    		service                  *model.Service
    		port                     *model.Port
    		proxyView                model.ProxyView
    		destRule                 *networking.DestinationRule
    		serviceAcct              []string // SE SAN values
    		enableAutoSni            bool
    		enableVerifyCertAtClient bool
    		expectTLSContext         *tls.UpstreamTlsContext
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. 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)
  6. 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