Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Fqdn (0.15 sec)

  1. tests/testdata/config/destination-rule-fqdn.yaml

    # Fails if a service with the name exists: trusted_ca required !
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: fqdn
      namespace: testns
    spec:
      host: www.webinf.info
      trafficPolicy:
        loadBalancer:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 261 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/util/hosts_test.go

    	g := NewWithT(t)
    
    	ns, fqdn := ScopedFqdn("default/reviews.default.svc.cluster.local").GetScopeAndFqdn()
    	g.Expect(ns).To(Equal("default"))
    	g.Expect(fqdn).To(Equal("reviews.default.svc.cluster.local"))
    
    	ns, fqdn = ScopedFqdn("*/reviews.default.svc.cluster.local").GetScopeAndFqdn()
    	g.Expect(ns).To(Equal("*"))
    	g.Expect(fqdn).To(Equal("reviews.default.svc.cluster.local"))
    
    	ns, fqdn = ScopedFqdn("foo/*.xyz.abc").GetScopeAndFqdn()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/util/hosts.go

    	fqdn := host
    	// Convert to FQDN only if host is not a wildcard or a FQDN
    	if !strings.HasPrefix(host, "*") &&
    		!strings.Contains(host, ".") {
    		fqdn = host + "." + string(namespace) + "." + DefaultClusterLocalDomain
    	}
    	return fqdn
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 28 04:57:33 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. pkg/kubelet/util/util.go

    		}
    		kernelHostname = fqdn
    	}
    	return kernelHostname, nil
    }
    
    // GetContainerByIndex validates and extracts the container at index "idx" from
    // "containers" with respect to "statuses".
    // It returns true if the container is valid, else returns false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 18:07:39 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/cluster.go

    type ClusterFilter struct {
    	FQDN      host.Name
    	Port      int
    	Subset    string
    	Direction model.TrafficDirection
    }
    
    // Verify returns true if the passed cluster matches the filter fields
    func (c *ClusterFilter) Verify(cluster *cluster.Cluster) bool {
    	name := cluster.Name
    	if c.FQDN == "" && c.Port == 0 && c.Subset == "" && c.Direction == "" {
    		return true
    	}
    	if c.FQDN != "" && !strings.Contains(name, string(c.FQDN)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

    
    /**
     * @author mbechler
     *
     */
    public interface DfsReferralDataInternal extends DfsReferralData {
    
        /**
         * Replaces the host with the given FQDN if it is currently unqualified
         * 
         * @param fqdn
         */
        void fixupHost ( String fqdn );
    
    
        /**
         * Possibly appends the given domain name to the host name if it is currently unqualified
         * 
         * @param domain
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  7. pkg/kubelet/util/util_test.go

    		expectError:       false,
    	}, {
    		description:       "FQDN is too long, setHostnameAsFQDN false",
    		hostname:          "1234567.1234567",                                         //8*2-1=15 chars
    		hostDomain:        "1234567.1234567.1234567.1234567.1234567.1234567.1234567", //8*7-1=55 chars
    		setHostnameAsFQDN: false,                                                     //FQDN=15 + 1(dot) + 55 = 71 chars
    		expectedHostname:  "1234567.1234567",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 14:16:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pkg/test/framework/components/authz/kube.go

    }
    
    func (s *serverImpl) Providers() []Provider {
    	return append([]Provider{}, s.providers...)
    }
    
    func (s *serverImpl) templateArgs() map[string]any {
    	fqdn := fmt.Sprintf("ext-authz.%s.svc.cluster.local", s.ns.Name())
    	return map[string]any{
    		"fqdn":     fqdn,
    		"httpName": httpName,
    		"grpcName": grpcName,
    		"httpPort": httpPort,
    		"grpcPort": grpcPort,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_destinationrules.yaml

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews-fqdn
      namespace: default
    spec:
      http:
      - route:
        - destination:
            host: reviews.default.svc.cluster.local # FQDN representation is valid and should not generate an error
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/services.go

    	var out Callers
    	for _, s := range d {
    		out = append(out, s[0])
    	}
    	return out
    }
    
    func (d Services) MatchFQDNs(fqdns ...string) Services {
    	match := map[string]bool{}
    	for _, fqdn := range fqdns {
    		match[fqdn] = true
    	}
    	var out Services
    	for _, target := range d {
    		if match[target.Config().ClusterLocalFQDN()] {
    			out = append(out, target)
    		}
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 21 16:42:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top