Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 368 for lmhosts (0.4 sec)

  1. samples/extauthz/local-ext-authz.yaml

    # Define the service entry for the local ext-authz service on port 8000.
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: httpbin-ext-authz-http
    spec:
      hosts:
      - "ext-authz-http.local"
      endpoints:
      - address: "127.0.0.1"
      ports:
      - name: http
        number: 8000
        protocol: HTTP
      resolution: STATIC
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/gateway-correct-port.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 258 bytes
    - Viewed (0)
  3. tests/testdata/multicluster/envoy_local_v2.yaml

              cluster_name: "xds_cluster"
    
    static_resources:
      clusters:
      - name: xds_cluster
        connect_timeout: 0.25s
        type: STATIC
        lb_policy: ROUND_ROBIN
        http2_protocol_options: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 18 01:39:48 UTC 2018
    - 643 bytes
    - Viewed (0)
  4. samples/bookinfo/networking/virtual-service-reviews-v2-v3.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
        - reviews
      http:
      - route:
        - destination:
            host: reviews
            subset: v2
          weight: 50
        - destination:
            host: reviews
            subset: v3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 290 bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway-bogus
    spec:
      selector:
        istio: ingresstypo
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 29 03:04:35 UTC 2020
    - 263 bytes
    - Viewed (0)
  6. buildscripts/heal-inconsistent-versions.sh

    		echo "FAILED"
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    	"${PWD}/mc" mb --with-versioning minio/bucket
    
    	for i in $(seq 1 4); do
    		"${PWD}/mc" cp /etc/hosts minio/bucket/testobj
    
    		sudo chown -R root. "${WORK_DIR}/disk${i}"
    
    		"${PWD}/mc" cp /etc/hosts minio/bucket/testobj
    
    		sudo chown -R ${USER}. "${WORK_DIR}/disk${i}"
    	done
    
    	for vid in $("${PWD}/mc" ls --json --versions minio/bucket/testobj | jq -r .versionId); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. tests/integration/security/remote_jwks/testdata/requestauthn-with-se.yaml.tmpl

        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: jwt-server-se
    spec:
      hosts:
      - example.com
      location: MESH_INTERNAL
      ports:
      - number: 8000
        name: http
        protocol: HTTP
      resolution: DNS
      endpoints:
      - address: jwt-server.istio-system.svc.cluster.local
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 628 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/virtualservice/destinationhosts.go

    		Description: "Checks the destination hosts associated with each virtual service",
    		Inputs: []config.GroupVersionKind{
    			gvk.ServiceEntry,
    			gvk.VirtualService,
    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *DestinationHostAnalyzer) Analyze(ctx analysis.Context) {
    	// Precompute the set of service entry hosts that exist (there can be more than one defined per ServiceEntry CRD)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. samples/bookinfo/networking/virtual-service-reviews-jason-v2-v3.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews
    spec:
      hosts:
      - reviews
      http:
      - match:
        - headers:
            end-user:
              exact: jason
        route:
        - destination:
            host: reviews
            subset: v2
      - route:
        - destination:
            host: reviews
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 17 21:01:05 UTC 2018
    - 332 bytes
    - Viewed (0)
  10. pkg/test/datasets/validation/dataset/networking-v1-VirtualService.yaml

    apiVersion: networking.istio.io/v1
    kind: VirtualService
    metadata:
      name: valid-virtual-service
    spec:
      hosts:
        - c
      http:
        - route:
          - destination:
              host: c
              subset: v1
            weight: 75
          - destination:
              host: c
              subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 298 bytes
    - Viewed (0)
Back to top