Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,598 for host3 (0.05 sec)

  1. pilot/pkg/model/cluster_local.go

    	} else {
    		if !strings.HasSuffix(string(discoveryHost), domainSuffix) {
    			discoveryHost += host.Name("." + domainSuffix)
    		}
    		defaultClusterLocalHosts = append(defaultClusterLocalHosts, discoveryHost)
    	}
    
    	// Collect the cluster-local hosts.
    	hosts := ClusterLocalHosts{
    		specific: make(map[host.Name]struct{}, 0),
    		wildcard: make(map[host.Name]struct{}, 0),
    	}
    	for _, serviceSettings := range e.Mesh().ServiceSettings {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. pkg/config/host/names.go

    	return result
    }
    
    // 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)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

    metadata:
      name: sample-foo-cluster01
      namespace: foo
    spec:
      hosts:
      - sample.foo.svc.cluster.local
      http:
      - fault:
          delay:
            fixedDelay: 5s
            percentage:
              value: 100
        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - mirror:
          host: sample.bar.svc.cluster.local
        route:
        - destination:
            host: sample.bar.svc.cluster.local
            subset: v1
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

      creationTimestamp: null
      name: egress-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - google.com
      http:
      - name: default.egress.0
        route:
        - destination:
            host: google.com
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. samples/bookinfo/networking/virtual-service-all-v1.yaml

    kind: VirtualService
    metadata:
      name: productpage
    spec:
      hosts:
      - productpage
      http:
      - route:
        - destination:
            host: productpage
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
      - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v1
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 13 06:03:11 UTC 2018
    - 804 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      name: consumer-override-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - httpbin-apple.apple.svc.domain.suffix
      http:
      - match:
        - port: 80
        name: default.consumer-override.0
        route:
        - destination:
            host: httpbin-apple.apple.svc.domain.suffix
            port:
              number: 80
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultNativePlatformTest.groovy

        }
    
        def "host platform has useful display name"() {
            expect:
            def host = DefaultNativePlatform.host()
            host.displayName.startsWith("host operating system")
            host.toString() == host.displayName
    
            def host2 = host.withArchitecture(arch)
            host2.displayName.startsWith("host operating system")
            host2.toString() == host2.displayName
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/virtualservice_overlappingmatches.yaml

    kind: VirtualService
    metadata:
      name: non-method-get
    spec:
      hosts:
      - sample.baz.svc.cluster.local
      http:
      - name: "send product to sample.foo"
        match:
        - uri:
            prefix: "/api/v1/product"
        - uri:
            prefix: "/api/v1/products"
          method:
            exact: GET
        route:
        - destination:
            host: sample.foo.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/testdata/nds-se.yaml

      name: service-dns-no-addr
      namespace: ns2
    spec:
      hosts:
        - random-1.host.example
      # expect address to be auto allocated
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-dns-with-addr
      namespace: ns2
    spec:
      hosts:
        - random-2.host.example
      addresses:
        - 9.9.9.9
      ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 08 09:17:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. pilot/pkg/model/cluster_local_test.go

    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/mesh"
    )
    
    func TestIsClusterLocal(t *testing.T) {
    	cases := []struct {
    		name     string
    		m        *meshconfig.MeshConfig
    		host     string
    		expected bool
    	}{
    		{
    			name:     "kube-system is local",
    			m:        mesh.DefaultMeshConfig(),
    			host:     "s.kube-system.svc.cluster.local",
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top