Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 422 for lmhosts (0.23 sec)

  1. pilot/pkg/xds/testdata/benchmarks/disabled.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
      - number: 7070
        name: tcp
        protocol: TCP
      - number: 443
        name: https
        protocol: HTTPS
      - number: 9090
        name: auto
        protocol: ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 595 bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

        shortNames:
        - se
        singular: serviceentry
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: The hosts associated with the ServiceEntry
          jsonPath: .spec.hosts
          name: Hosts
          type: string
        - description: Whether the service is external to the mesh or part of the mesh
            (MESH_EXTERNAL or MESH_INTERNAL)
          jsonPath: .spec.location
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  3. pkg/config/host/names_test.go

    		},
    	}
    
    	for idx, tt := range tests {
    		t.Run(fmt.Sprintf("%d", idx), func(t *testing.T) {
    			result := host.NamesForNamespace(tt.hosts, tt.namespace)
    			if !reflect.DeepEqual(result, tt.want) {
    				t.Fatalf("host.NamesForNamespace(%v, %v) = %v, want %v", tt.hosts, tt.namespace, result, tt.want)
    			}
    		})
    	}
    }
    
    func TestNamesSortOrder(t *testing.T) {
    	tests := []struct {
    		in, want host.Names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pkg/test/datasets/validation/dataset/networking-v1-Gateway.yaml

        # The ingressgateway is defined in install/kubernetes/helm/istio/values.yaml
        # with these labels
        istio: ingressgateway
      servers:
      - port:
          number: 31400
          protocol: TCP
          name: tcp
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 460 bytes
    - Viewed (0)
  5. pkg/test/datasets/validation/dataset/networking-v1beta1-Gateway.yaml

        # The ingressgateway is defined in install/kubernetes/helm/istio/values.yaml
        # with these labels
        istio: ingressgateway
      servers:
      - port:
          number: 31400
          protocol: TCP
          name: tcp
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 465 bytes
    - Viewed (0)
  6. pilot/pkg/xds/testdata/benchmarks/externalname.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
      location: MESH_INTERNAL
      endpoints:
        - address: 1.1.1.1
          labels:
            security.istio.io/tlsMode: istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 632 bytes
    - Viewed (0)
  7. releasenotes/notes/49364.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 49364
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 01:20:21 UTC 2024
    - 224 bytes
    - Viewed (0)
  8. releasenotes/notes/49368.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 49368
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 226 bytes
    - Viewed (0)
  9. tests/integration/telemetry/policy/helper_test.go

      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "some-external-site.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
    spec:
      hosts:
        - "some-external-site.com"
      gateways:
      - istio-egressgateway
      - mesh
      http:
        - match:
          - gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
Back to top