Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for lmhosts (0.13 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    			se: &networkingclient.ServiceEntry{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: networking.ServiceEntry{
    					Addresses: []string{"1.2.3.4"},
    					Hosts:     []string{"a.example.com", "b.example.com"},
    					Ports: []*networking.ServicePort{{
    						Number: 80,
    						Name:   "http",
    					}},
    					SubjectAltNames: []string{"san1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    		}
    	}
    
    	return devices, nil
    }
    
    // shouldMountHostsFile checks if the nodes /etc/hosts should be mounted
    // Kubernetes only mounts on /etc/hosts if:
    // - container is not an infrastructure (pause) container
    // - container is not already mounting on /etc/hosts
    // Kubernetes will not mount /etc/hosts if:
    // - when the Pod sandbox is being created, its IP is still unknown. Hence, PodIP will not have been set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts: ["*"]
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route
    spec:
      gateways:
      - gateway
      hosts:
      - "*"
      http:
      - match:
        - uri:
            exact: /allowed
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    		nt := a.localDNSServer.NameTable()
    		nt = proto.Clone(nt).(*dnsProto.NameTable)
    		a.localDNSServer.BuildAlternateHosts(nt, func(althosts map[string]struct{}, ipv4 []netip.Addr, ipv6 []netip.Addr, _ []string) {
    			for host := range althosts {
    				if _, exists := nt.Table[host]; !exists {
    					addresses := make([]string, 0, len(ipv4)+len(ipv6))
    					for _, addr := range ipv4 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. cmd/object-api-utils.go

    	return bucketName == minioReservedBucket
    }
    
    // returns a slice of hosts by reading a slice of DNS records
    func getHostsSlice(records []dns.SrvRecord) []string {
    	hosts := make([]string, len(records))
    	for i, r := range records {
    		hosts[i] = net.JoinHostPort(r.Host, string(r.Port))
    	}
    	return hosts
    }
    
    // returns an online host (and corresponding port) from a slice of DNS records
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_test.go

    					Port: &networking.SidecarPort{
    						Number:   15021,
    						Protocol: "GRPC",
    						Name:     "http",
    					},
    					Hosts: []string{"*/*"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   15001,
    						Protocol: "HTTP",
    						Name:     "http",
    					},
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	testcases := []struct {
    		name             string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  7. internal/grid/grid_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    	grid, err := SetupTestGrid(2)
    	errFatal(err)
    	t.Cleanup(grid.Cleanup)
    
    	local := grid.Managers[0]
    	localHost := grid.Hosts[0]
    	remote := grid.Managers[1]
    	remoteHost := grid.Hosts[1]
    
    	connLocalToRemote := local.Connection(remoteHost)
    	connRemoteLocal := remote.Connection(localHost)
    
    	t.Run("testStreamRoundtrip", func(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/gateway_test.go

    		},
    	}
    	if t.Settings().EnableDualStack {
    		additionalTestCases := []struct {
    			check echo.Checker
    			from  echo.Instances
    			host  string
    		}{
    			// apps.D hosts a dual-stack service,
    			// apps.E hosts an ipv6 only service and
    			// apps.B hosts an ipv4 only service
    			{
    				check: check.OK(),
    				from:  apps.D,
    				host:  "bar.example.com",
    			},
    			{
    				check: check.OK(),
    				from:  apps.E,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/sidecar_simulation_test.go

    spec:
      mtls:
        mode: %s
    `, m)
    }
    
    func TestInbound(t *testing.T) {
    	svc := `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: se
    spec:
      hosts:
      - foo.bar
      endpoints:
      - address: 1.1.1.1
      location: MESH_INTERNAL
      resolution: STATIC
      ports:
      - name: tcp
        number: 70
        protocol: TCP
      - name: http
        number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    			hostAliases:   []v1.HostAlias{},
    			rawHostsFileContent: `# hosts file for testing.
    127.0.0.1	localhost
    ::1	localhost ip6-localhost ip6-loopback
    fe00::0	ip6-localnet
    fe00::0	ip6-mcastprefix
    fe00::1	ip6-allnodes
    fe00::2	ip6-allrouters
    123.45.67.89	some.domain
    `,
    			expectedHostsFileContent: `# Kubernetes-managed hosts file (host network).
    # hosts file for testing.
    127.0.0.1	localhost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top