Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 368 for lmhosts (0.25 sec)

  1. 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)
  2. pkg/config/analysis/analyzers/testdata/serviceentry-missing-addresses-protocol.yaml

      namespace: default
    spec:
      hosts:
        - 'istio.io'
      exportTo:
        - "."
      ports:
        - number: 443
          name: https
          protocol: HTTPS
      location: MESH_EXTERNAL
      resolution: DNS
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: service-entry-test-02 # Expected: no validation error
      namespace: default
    spec:
      hosts:
        - 'istio.io'
      addresses:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway.yaml

    spec:
      selector:
        istio: ingressgateway
      servers:
      - hosts:
        - testing-01.com
        port:
          name: http
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-01
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/virtualservice_conflictingmeshgatewayhosts.yaml

    metadata:
      name: productpage
      namespace: foo
    spec:
      hosts:
      - productpage # should generate an error as this conflicts with VirtualService foo/bogus
      http:
      - route:
        - destination:
            host: productpage
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: bogus-productpage
      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)
  5. tests/testdata/networking/ingress-gateway/configs.yaml

        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*.bookinfo.com"
        tls:
          httpsRedirect: true # sends 302 redirect for http requests
      - port:
          number: 443
          name: https
          protocol: HTTPS
        hosts:
        - "*.bookinfo.com"
        tls:
          mode: SIMPLE
          serverCertificate: /etc/certs/servercert.pem
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 28 15:04:31 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/nds-se.yaml

    metadata:
      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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 08 09:17:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/gateway-duplicate-certificate.yaml

        hosts:
        - "02.test-06.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: gateway-03-test-06
      namespace: default
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "03.test-06.com" # no validation error
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/cluster_local.go

    		if len(defaultClusterLocalHost) > 0 {
    			if defaultClusterLocalHost.IsWildCarded() {
    				hosts.wildcard.Insert(defaultClusterLocalHost)
    			} else {
    				hosts.specific.Insert(defaultClusterLocalHost)
    			}
    		}
    	}
    
    	c.mutex.Lock()
    	c.hosts = hosts
    	c.mutex.Unlock()
    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. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: default-sidecar-scope
      namespace: istio-config
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    # Authentication policy to enable mutual TLS for all services (that have sidecar) in the mesh.
    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
      namespace: istio-config
    spec:
      mtls:
        mode: STRICT
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/mesh.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:
        - '*/*.example.com'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    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
    - 6K bytes
    - Viewed (0)
Back to top