Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,598 for host3 (0.04 sec)

  1. pilot/pkg/bootstrap/config_compare_test.go

    				},
    				Spec: &networking.VirtualService{Hosts: []string{"test-host"}},
    			},
    			curr: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             "acme2-v1",
    					Namespace:        "not-default",
    					Labels:           map[string]string{"test": "test-v1"},
    				},
    				Spec: &networking.VirtualService{Hosts: []string{"test-host", "test-host2"}},
    			},
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 16:47:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    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: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix.yaml

      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
        - istio-system/testing-gateway
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top