Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,598 for host3 (0.08 sec)

  1. pilot/pkg/config/kube/gateway/testdata/http.yaml.golden

              number: 80
      - mirrors:
        - destination:
            host: httpbin-mirror.default.svc.domain.suffix
            port:
              number: 80
        - destination:
            host: httpbin-second.default.svc.domain.suffix
            port:
              number: 80
        name: default.mirror.0
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/virtualservice/gateways.go

    	return false
    }
    
    // convert ./host to currentNamespace/Host
    // */host to just host
    // */* to just *
    func sanitizeServerHostNamespace(server *v1alpha3.Server, namespace string) {
    	for i, h := range server.Hosts {
    		if strings.Contains(h, "/") {
    			parts := strings.Split(h, "/")
    			if parts[0] == "." {
    				server.Hosts[i] = fmt.Sprintf("%s/%s", namespace, parts[1])
    			} else if parts[0] == "*" {
    				if parts[1] == "*" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 01:28:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/internal/authentication/AbstractAuthentication.java

            return hosts;
        }
    
    
        @Override
        public void addHost(String host, int port) {
            hosts.add(new DefaultHostAndPort(host, port));
        }
    
        private static class DefaultHostAndPort implements HostAndPort {
            private final String host;
            private final int port;
    
            DefaultHostAndPort(String host, int port) {
                this.host = host;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/virtualservice.yaml

    kind: VirtualService
    metadata:
      name: vs-{{$i}}
    spec:
      hosts:
        - random-{{$i}}.host.example
      http:
      - name: "match-route"
        match:
        - uri:
            prefix: "/foo"
        - uri:
            regex: "/bar"
        rewrite:
          uri: "/new-url"
        route:
          - destination:
              host: random-{{$i}}.host.example
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1K bytes
    - Viewed (0)
  6. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: http1
      namespace: ns1
    spec:
      hosts:
      - http1.ns1.svc.cluster.local
      http:
      - route:
        - destination:
            host: http1.ns1.svc.cluster.local
            subset: v1
          weight: 70
        - destination:
            host: http1.ns1.svc.cluster.local
            subset: v2
          weight: 30
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. samples/multicluster/expose-istiod-https.yaml

            credentialName: "$CREDENTIAL_NAME"
          hosts:
          # use a valid gateway host and domain for istiod
          - "ISTIOD-HOST.DOMAIN"
        - port:
            name: https-istiodwebhook
            number: 15017
            protocol: https
          tls:
            mode: SIMPLE
            # use a valid credential here
            credentialName: "$CREDENTIAL_NAME"
          hosts:
          # use a valid gateway host and domain for istiod
          - "ISTIOD-HOST.DOMAIN"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/weighted.yaml.golden

      namespace: default
    spec:
      gateways:
      - istio-system/gateway-istio-autogenerated-k8s-gateway-tcp
      hosts:
      - '*'
      tcp:
      - route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 9090
          weight: 1
        - destination:
            host: httpbin-alt.default.svc.domain.suffix
            port:
              number: 9090
          weight: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/cluster_patch.go

    	if cMatch.PortNumber != 0 && int(cMatch.PortNumber) != port {
    		return false
    	}
    	return true
    }
    
    func hostContains(hosts []host.Name, service host.Name) bool {
    	for _, h := range hosts {
    		if h == service {
    			return true
    		}
    	}
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

      - istio-system/gateway-istio-autogenerated-k8s-gateway-default
      hosts:
      - a.domain.example
      http:
      - match:
        - headers:
            my-header:
              exact: some-value
          queryParams:
            my-param:
              regex: some-value
          uri:
            exact: /baz
        name: allowed-2.http.1
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top