Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 540 for lmhosts (0.73 sec)

  1. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: external-reviews
      namespace: default
    spec:
      hosts:
      - external-reviews.org
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: eu-wildcard
      namespace: default
    spec:
      hosts:
      - "*.eu.bookinfo.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/invalid.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
    - 4K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/testdata/overlay.yaml.golden

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      creationTimestamp: null
      name: foo-istio-autogenerated-k8s-ingress-ns
      namespace: istio-system
    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - '*'
        port:
          name: http-80-ingress-foo-ns
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      creationTimestamp: null
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 18:20:34 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              # don't overwrite /etc/hosts since it's managed by kubeproxy
              #sudo sh -c 'cat /var/run/secrets/istio/bootstrap/hosts >> /etc/hosts'
    
              # since we're not overwriting /etc/hosts on k8s, verify that istiod hostname in /etc/hosts
              # matches the value generated by istioctl
              echo "checking istio host"
              SYSTEM_HOST=$(cat /etc/hosts | grep istiod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. pilot/pkg/model/cluster_local_test.go

    				ServiceSettings: []*meshconfig.MeshConfig_ServiceSettings{
    					{
    						Settings: &meshconfig.MeshConfig_ServiceSettings_Settings{
    							ClusterLocal: false,
    						},
    						Hosts: []string{"*.kube-system.svc.cluster.local"},
    					},
    				},
    			},
    			host:     "s.kube-system.svc.cluster.local",
    			expected: false,
    		},
    		{
    			name: "override default service",
    			m: &meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/config/host/names.go

    }
    
    // NewNames converts a slice of host name strings to type Names.
    func NewNames(hosts []string) Names {
    	result := make(Names, 0, len(hosts))
    	for _, host := range hosts {
    		result = append(result, Name(host))
    	}
    	return result
    }
    
    // NamesForNamespace returns the subset of hosts that are in the specified namespace.
    // The list of hosts contains host names optionally qualified with namespace/ or */.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/isolation.yaml.golden

      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
      servers:
      - hosts:
        - '*/*'
        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: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. buildscripts/minio-upgrade.sh

    		up -d --build
    
    	add_alias
    
    	mc mb minio/minio-test/
    	mc cp ./minio minio/minio-test/to-read/
    	mc cp /etc/hosts minio/minio-test/to-read/hosts
    	mc anonymous set download minio/minio-test
    
    	verify_checksum_mc ./minio minio/minio-test/to-read/minio
    
    	curl -s http://127.0.0.1:9000/minio-test/to-read/hosts | sha256sum
    
    	MINIO_VERSION=dev /tmp/gopath/bin/docker-compose -f "buildscripts/upgrade-tests/compose.yml" stop
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/config/validation/validation_test.go

    			&networking.Server{
    				Hosts: []string{"ns1/foo.bar.com"},
    				Port:  &networking.Port{Number: 7, Name: "http", Protocol: "http"},
    			},
    			"",
    		},
    		{
    			"happy */name",
    			&networking.Server{
    				Hosts: []string{"*/foo.bar.com"},
    				Port:  &networking.Port{Number: 7, Name: "http", Protocol: "http"},
    			},
    			"",
    		},
    		{
    			"happy ./name",
    			&networking.Server{
    				Hosts: []string{"./foo.bar.com"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  10. 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)
Back to top