Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 368 for lmhosts (0.16 sec)

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

      creationTimestamp: null
      name: isolation-istio-autogenerated-k8s-gateway-empty-hostname
      namespace: gateway-conformance-infra
    spec:
      servers:
      - hosts:
        - '*/*'
        port:
          name: default
          number: 80
          protocol: HTTP
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. buildscripts/minio-upgrade.sh

    		up -d --build
    
    	add_alias
    
    	mc mb minio/minio-test/
    	mc cp ./minio minio/minio-test/to-read/
    	mc cp /etc/hosts minio/minio-test/to-read/hosts
    	mc anonymous set download minio/minio-test
    
    	verify_checksum_mc ./minio minio/minio-test/to-read/minio
    
    	curl -s http://127.0.0.1:9000/minio-test/to-read/hosts | sha256sum
    
    	MINIO_VERSION=dev /tmp/gopath/bin/docker-compose -f "buildscripts/upgrade-tests/compose.yml" stop
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. samples/bookinfo/networking/virtual-service-all-v1.yaml

    apiVersion: networking.istio.io/v1alpha3
    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)
  4. samples/multicluster/expose-istiod-rev.yaml.tmpl

          tls:
            mode: PASSTHROUGH        
          hosts:
            - "*"
        - port:
            name: tls-istiodwebhook
            number: 15017
            protocol: tls
          tls:
            mode: PASSTHROUGH          
          hosts:
            - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: istiod-vs-{{.Revision}}
    spec:
      hosts:
      - "*"
      gateways:
      - istiod-gateway
      tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 22 05:22:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/monitor/file_snapshot_test.go

    spec:
      servers:
      - port:
          number: 80
          name: http
          protocol: http
        hosts:
        - "*.example.com"
    `
    
    var statusRegressionYAML = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: test
      namespace: test-1
    spec:
      selector:
        app: istio-ingressgateway
      servers:
      - hosts:
        - example.com
        port:
          name: http
          number: 80
          protocol: HTTP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/benchmarks/virtualservice.yaml

    # Set up a Service associated with our proxy, which will run as 1.1.1.1 IP
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: proxy-service-instance
    spec:
      hosts:
      - example.com
      ports:
      - number: 80
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
    ---
    # Set up .Services VirtualServices, each pointing to a different Service
    {{- range $i := until .Services }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 01 15:55:05 UTC 2020
    - 1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/eastwest.yaml.golden

        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*
        port:
          name: default
          number: 15012
          protocol: TLS
        tls: {}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/conflicting-gateways-invalid-port.yaml

    kind: Gateway
    metadata:
      name: beta
    spec:
      selector:
        istio: ingressgateway
      servers:
        - hosts:
            - "foo.bar"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: alpha
    spec:
      selector:
        istio: ingressgateway
      servers:
        - hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 06:53:55 UTC 2023
    - 337 bytes
    - Viewed (0)
  9. tests/testdata/config/none.yaml

          tcp1: 7070
    ---
    
    # TODO: in progres, should bind to 127.0.0.1
    # will resolve using SNI
    # DNS or etc/hosts or code must override the address, but pass proper SNI
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: https
      namespace: none
    spec:
      hosts:
      # TODO: Bug: without isolation (in the main test) it causes 'duplicated cluster', envoy rejects config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

        internal.istio.io/parents: Gateway/eastwestgateway/istiod-grpc.istio-system
      creationTimestamp: null
      name: eastwestgateway-istio-autogenerated-k8s-gateway-istiod-grpc
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*
        port:
          name: default
          number: 15012
          protocol: TLS
        tls: {}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top