Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for lmhosts (0.12 sec)

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

    	// Add the uniqueHost.
    	vhosts = appendDomainPort(vhosts, uniqueHostname, port)
    	if len(uniqueHostnameParts) == 2 {
    		// This is the case of uniqHostname having namespace already.
    		dnsHostName := uniqueHostname + "." + sharedDNSDomainParts[0]
    		vhosts = appendDomainPort(vhosts, dnsHostName, port)
    	}
    	return vhosts
    }
    
    // portNoAppendPortSuffix is a signal to not append port to vhost
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pkg/dns/client/dns.go

    			// that is likely to be already present in the altHosts
    			if _, exists := altHosts[expandedHost]; !exists {
    				table.cname[expandedHost] = cname(expandedHost, h)
    				table.allHosts.Insert(expandedHost)
    			}
    		}
    	}
    }
    
    // Borrowed from https://github.com/coredns/coredns/blob/master/plugin/hosts/hosts.go
    // a takes a slice of ip string and returns a slice of A RRs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/sidecar.go

    		}
    
    		// exact hosts are saved separately for map lookup
    		if !hName.IsWildCarded() {
    			hostsByNamespace[ns].exactHosts.Insert(hName)
    		}
    
    		// allHosts contains the exact hosts and wildcard hosts,
    		// since SelectVirtualServices will use `Matches` semantic matching.
    		hc := hostsByNamespace[ns]
    		hc.allHosts = append(hc.allHosts, hName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    			virtualServiceHosts := host.NewNames(virtualService.Spec.(*networking.VirtualService).Hosts)
    			serverHosts := host.NamesForNamespace(server.Hosts, virtualService.Namespace)
    
    			// We have two cases here:
    			// 1. virtualService hosts are 1.foo.com, 2.foo.com, 3.foo.com and server hosts are ns/*.foo.com
    			// 2. virtualService hosts are *.foo.com, and server hosts are ns/1.foo.com, ns/2.foo.com, ns/3.foo.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_simulation_test.go

    		},
    	)
    }
    
    func TestGatewayConflicts(t *testing.T) {
    	tcpServer := `port:
      number: 80
      name: tcp
      protocol: TCP
    hosts:
    - "foo.bar"`
    	httpServer := `port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "foo.bar"`
    	tlsServer := `hosts:
      - ./*
    port:
      name: https-ingress
      number: 443
      protocol: HTTPS
    tls:
      credentialName: sds-credential
      mode: SIMPLE`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml.golden

        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - '*/*.domain.example'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. hack/make-rules/test-e2e-node.sh

               if [[ "${hosts}" != "" ]]; then
                 hosts="${hosts},"
               fi
               echo "Reusing host ${instance_prefix}-${i}"
               hosts="${hosts}${instance_prefix}-${i}"
             else
               if [[ "${images}" != "" ]]; then
                 images="${images},"
               fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    	hosts := sets.Set[string]{}
    	if g == nil {
    		return hosts
    	}
    	if g.ContainsAutoPassthroughGateways {
    		for _, tls := range g.MergedServers {
    			for _, s := range tls.Servers {
    				if s.GetTls().GetMode() == networking.ServerTLSSettings_AUTO_PASSTHROUGH {
    					hosts.InsertAll(s.Hosts...)
    				}
    			}
    		}
    	}
    	return hosts
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. src/net/conf_test.go

    			c: &conf{
    				netGo: true,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns files"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name: "netgo_fallback_on_cgo",
    			c: &conf{
    				netGo: true,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: dns files something_custom"),
    			hostTests: []nssHostTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/ads_test.go

    	}
    
    	addVirtualService := func(i int, hosts []string, dest string) {
    		if _, err := s.Store().Create(config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             fmt.Sprintf("vs%d", i), Namespace: testConfigNamespace,
    			},
    			Spec: &networking.VirtualService{
    				Hosts: hosts,
    				Http: []*networking.HTTPRoute{{
    					Name: "dest-foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top