Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for SVC (0.06 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    				Dest:      "alt-known.default.svc.cluster.local",
    			}},
    			proxy:     proxy("not-default"),
    			routeName: "8080",
    			expected: map[string][]string{
    				"known.default.svc.cluster.local": {"outbound|8080||alt-known.default.svc.cluster.local"},
    			},
    			expectedGateway: map[string][]string{
    				"known.default.svc.cluster.local": {"outbound|8080||known.default.svc.cluster.local"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			destRule: &networking.DestinationRule{
    				Host: "foo.default.svc.cluster.local",
    				TrafficPolicy: &networking.TrafficPolicy{
    					Tls: &networking.ClientTLSSettings{
    						Mode:            networking.ClientTLSSettings_SIMPLE,
    						CaCertificates:  constants.RootCertFilename,
    						Sni:             "foo.default.svc.cluster.local",
    						SubjectAltNames: []string{"foo.default.svc.cluster.local"},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pilot/pkg/xds/delta_test.go

    		}
    	}
    
    	sendEDSReqAndVerify([]string{"outbound|80||local.default.svc.cluster.local"}, nil, []string{"outbound|80||local.default.svc.cluster.local"})
    	// Only send the one that is requested
    	sendEDSReqAndVerify([]string{"outbound|81||local.default.svc.cluster.local"}, nil, []string{"outbound|81||local.default.svc.cluster.local"})
    	ads.Request(&discovery.DeltaDiscoveryRequest{
    		ResponseNonce:            nonce,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server_test.go

    			revision:         "",
    			sans: []string{
    				"a.com", "b.com", "c.com",
    				"istio-pilot.istio-system.svc",
    				"istiod-remote.istio-system.svc",
    				"istiod.istio-system.svc",
    				"istiod.istio-system.svc.cluster.local",
    			},
    		},
    		{
    			name:             "canary revision",
    			customHost:       "a.com,b.com,c.com",
    			discoveryAddress: "istiod.istio-system.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    	chains := []*listener.FilterChain{}
    	for _, svc := range svcs {
    		portMapper := match.NewDestinationPort()
    		for _, port := range svc.Ports {
    			if port.Protocol == protocol.UDP {
    				continue
    			}
    			portString := strconv.Itoa(port.Port)
    			cc := inboundChainConfig{
    				clusterName:   model.BuildSubsetKey(model.TrafficDirectionInboundVIP, "tcp", svc.Hostname, port.Port),
    				policyService: svc,
    				port: model.ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	res := map[string]*workloadapi.PortList{}
    	for _, svc := range services {
    		n := namespacedHostname(svc.Namespace, svc.Hostname)
    		pl := &workloadapi.PortList{
    			Ports: make([]*workloadapi.Port, 0, len(svc.Ports)),
    		}
    		res[n] = pl
    		for _, port := range svc.Ports {
    			targetPort := port.TargetPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 288 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/destinationrule-simple-port-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: SIMPLE
              credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 342 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 217 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/destinationrule-simple-destination-credentialname-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: db-tls
    spec:
      host: mydbserver.prod.svc.cluster.local
      trafficPolicy:
        tls:
          mode: SIMPLE
          credentialName: db-credential
      workloadSelector:
          matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 271 bytes
    - Viewed (0)
Back to top