Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,243 for host3 (0.05 sec)

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

        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-02-test-01
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-01
      hosts:
      - wrong-01.com # Expected: validation error since this host does not exist
      http:
      - match:
        - uri:
            prefix: /
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix_beta.yaml

      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
        - istio-system/testing-gateway
      hosts:
        - testing-01.com # Expected: validation error because this host is in the different namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

      namespace: bar
    spec:
      hosts:
      - reviews.foo.svc.cluster.local # shouldn't generate an error as the gateway is different even though host is the same
      gateways:
      - istio-ingressgateway
      http:
      - route:
        - destination:
            host: reviews
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: ratings
      namespace: foo
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/testdata/benchmarks/gateways.yaml

          number: 80
          name: http
          protocol: HTTP
        hosts:
        - random-a-{{$i}}.host.example
        - random-b-{{$i}}.host.example
        - random-c-{{$i}}.host.example
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - random-a-{{$i}}.host.example
        - random-b-{{$i}}.host.example
        - random-c-{{$i}}.host.example
        tls:
          mode: ISTIO_MUTUAL
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 03 15:29:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/gateways-shared.yaml

      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - random-1.host.example
        - random-2.host.example
        - random-3.host.example
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - random-1.host.example
        - random-2.host.example
        - random-3.host.example
        tls:
          mode: ISTIO_MUTUAL
    ---
    {{- range $i := until .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

    spec:
      hosts: [hello]
      http:
        - route:
            - destination:
                host: hello.hello.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: hello-export-to-bogus
      namespace: hello
    spec:
      hosts: [hello]
      exportTo:
        - bogus # This should generate an error, because the exportTo
      http:
        - route:
            - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts_with_exportto.yaml

    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - '*.productpage' # should generate an error as this conflicts with VirtualService bar/productpage
      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: productpage
      namespace: bar
    spec:
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top