Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 105 for FQDN (0.03 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. pilot/pkg/networking/telemetry/telemetry_test.go

    		},
    		{
    			"Service FQDN With Port pattern",
    			"%SERVICE_FQDN%_%SERVICE_PORT%",
    			FilterChainMetadata{InstanceHostname: "reviews.default.svc.cluster.local", KubernetesServiceName: "reviews", KubernetesServiceNamespace: "default"},
    			"",
    			7443,
    			"grpc-svc",
    			"reviews.default.svc.cluster.local_7443",
    		},
    		{
    			"Service FQDN With Port Name pattern",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                String fqdn = s + "." + dom;
                if ( log.isDebugEnabled() ) {
                    log.debug(String.format("Applying DFS netbios name hack %s -> %s ", s, fqdn));
                }
                this.server = fqdn;
            }
        }
    
    
        @Override
        public void fixupHost ( String fqdn ) {
            String s = getServer();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  9. 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)
  10. src/net/dnsclient_unix.go

    	}
    	var queryFn func(fqdn string, qtype dnsmessage.Type)
    	var responseFn func(fqdn string, qtype dnsmessage.Type) result
    	if conf.singleRequest {
    		queryFn = func(fqdn string, qtype dnsmessage.Type) {}
    		responseFn = func(fqdn string, qtype dnsmessage.Type) result {
    			dnsWaitGroup.Add(1)
    			defer dnsWaitGroup.Done()
    			p, server, err := r.tryOneName(ctx, conf, fqdn, qtype)
    			return result{p, server, err}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top