Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Fqdn (0.13 sec)

  1. istioctl/pkg/describe/describe.go

    	facts := []string{}
    	mismatchNotes := []string{}
    	match := false
    	for _, dest := range route.Route {
    		fqdn := string(model.ResolveShortnameToFQDN(dest.Destination.Host, config.Meta{Namespace: vs.Namespace}))
    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    				if slices.Contains(nonmatchingSubsets, dest.Destination.Subset) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. pkg/apis/certificates/validation/validation_test.go

    			// ensure signerName is of the form domain.com/something and up to 571 characters.
    			// This length and format is specified to accommodate signerNames like:
    			// <fqdn>/<resource-namespace>.<resource-name>.
    			// The max length of a FQDN is 253 characters (DNS1123Subdomain max length)
    			// The max length of a namespace name is 63 characters (DNS1123Label max length)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    		// https://github.com/kubernetes-sigs/gateway-api/pull/614
    		fqdn := addr.Value
    		if !strings.Contains(fqdn, ".") {
    			// Short name, expand it
    			fqdn = fmt.Sprintf("%s.%s.svc.%s", fqdn, obj.Namespace, r.Domain)
    		}
    		gatewayServices = append(gatewayServices, fqdn)
    	}
    	if len(skippedAddresses) > 0 {
    		// Give error but return services, this is a soft failure
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    		}
    
    		switch q.Questions[0].Name.String() {
    		case fqdn + ".servfail.":
    			r.Header.RCode = dnsmessage.RCodeServerFailure
    		default:
    			r.Header.RCode = dnsmessage.RCodeNameError
    		}
    
    		return r, nil
    	}}
    
    	cases := []struct {
    		strictErrors bool
    		wantErr      *DNSError
    	}{
    		{true, &DNSError{Name: fqdn, Err: "server misbehaving", IsTemporary: true}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

            host: concrete.default.svc.cluster.local`,
    		kubeConfig: service,
    		calls: []simulation.Expect{
    			{
    				// This work, Host is just an opaque hostname match
    				Name: "HTTP virtual service applies to alias fqdn",
    				Call: simulation.Call{Address: "1.2.3.4", Port: 80, Protocol: simulation.HTTP, HostHeader: "alias.default.svc.cluster.local", Path: "/one"},
    				Result: simulation.Result{
    					RouteMatched:   "route1",
    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. pkg/workloadapi/workload.pb.go

    	// Standard PROXY source and destination information
    	// is included, along with potential extra TLV headers:
    	// 0xD0 - The SPIFFE identity of the source workload
    	// 0xD1 - The FQDN or Hostname of the targeted Service
    	ApplicationTunnel_PROXY ApplicationTunnel_Protocol = 1
    )
    
    // Enum value maps for ApplicationTunnel_Protocol.
    var (
    	ApplicationTunnel_Protocol_name = map[int32]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    	for _, pm := range metrics {
    		mmap := ps.ProxyStatus[pm.Name()]
    		pm.Record(float64(len(mmap)))
    	}
    }
    
    // It is called after virtual service short host name is resolved to FQDN
    func virtualServiceDestinations(v *networking.VirtualService) map[string]sets.Set[int] {
    	if v == nil {
    		return nil
    	}
    
    	out := make(map[string]sets.Set[int])
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    	Routes []*route.Route
    }
    
    // BuildSidecarVirtualHostWrapper creates virtual hosts from the given set of virtual Services
    // and a list of Services from the service registry. Services are indexed by FQDN hostnames.
    // The list of Services is also passed to allow maintaining consistent ordering.
    func BuildSidecarVirtualHostWrapper(routeCache *Cache, node *model.Proxy, push *model.PushContext, serviceRegistry map[host.Name]*model.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceregistry_test.go

    	expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", []string{"1.2.3.4:80"}, nil)
    
    	// create an FQDN endpoint that should be ignored
    	createEndpointSliceWithType(t, s.KubeClient().Kube(), "slice1", "service",
    		namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"foo.com"}, discovery.AddressTypeFQDN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. pkg/proxy/endpointschangetracker_test.go

    			paramRemoveSlice:       false,
    			expectedReturnVal:      false,
    			expectedCurrentChange:  nil,
    		},
    		// ensure that only valide address types are processed
    		"add an FQDN slice (invalid address type)": {
    			startingSlices: []*discovery.EndpointSlice{
    				generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](80), ptr.To[int32](443)}),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
Back to top