Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 426 for lmhosts (0.21 sec)

  1. 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)
  2. tests/integration/security/remote_jwks/testdata/requestauthn-with-se-timeout.yaml.tmpl

        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
        timeout: {{ .timeout }}
    ---
    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: Fri Feb 23 09:47:21 UTC 2024
    - 675 bytes
    - Viewed (0)
  3. src/net/http/servemux121.go

    // serveMux121 holds the state of a ServeMux needed for Go 1.21 behavior.
    type serveMux121 struct {
    	mu    sync.RWMutex
    	m     map[string]muxEntry
    	es    []muxEntry // slice of entries sorted from longest to shortest.
    	hosts bool       // whether any patterns contain hostnames
    }
    
    type muxEntry struct {
    	h       Handler
    	pattern string
    }
    
    // Formerly ServeMux.Handle.
    func (mux *serveMux121) handle(pattern string, handler Handler) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:40:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/testdata/benchmarks/authorizationpolicy.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: 443
          name: https
          protocol: HTTPS
      resolution: STATIC
      endpoints:
        - address: 1.1.1.1
          labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 29 02:10:48 UTC 2023
    - 738 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	// Set up ground truth hostname values
    	hosts := map[host.Name]bool{
    		mock.HelloService.Hostname: false,
    		mock.WorldService.Hostname: false,
    	}
    
    	count := 0
    	// Compare return value to ground truth
    	for _, svc := range services {
    		if counted, existed := hosts[svc.Hostname]; existed && !counted {
    			count++
    			hosts[svc.Hostname] = true
    		}
    	}
    
    	if count != len(hosts) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1beta1.Ingress.yaml

                kind: kindValue
                name: nameValue
              serviceName: serviceNameValue
              servicePort: servicePortValue
            path: pathValue
            pathType: pathTypeValue
      tls:
      - hosts:
        - hostsValue
        secretName: secretNameValue
    status:
      loadBalancer:
        ingress:
        - hostname: hostnameValue
          ip: ipValue
          ports:
          - error: errorValue
            port: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. tests/integration/security/policy_attachment_only/testdata/authz/gateway-authz.yaml.tmpl

    spec:
      targetRef:
        name: {{ .To.ServiceName }}-gateway
        kind: Gateway
        group: gateway.networking.k8s.io
      action: ALLOW
      rules:
      - to:
        - operation:
            hosts:
    {{- range $svc := .Services }}
            - "example.{{ $svc.ServiceName }}.com"
    {{- end }}
        from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 847 bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    			"  To avoid, sending traffic to non ready endpoints, enabling this flag, disables panic threshold in Envoy i.e. Envoy does not load balance requests"+
    			" to unhealthy/non-ready hosts even if the percentage of healthy hosts fall below minimum health percentage(panic threshold).",
    	).Get())
    
    	EnablePersistentSessionFilter = env.Register(
    		"PILOT_ENABLE_PERSISTENT_SESSION_FILTER",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1.Ingress.json

              "number": 2
            }
          },
          "resource": {
            "apiGroup": "apiGroupValue",
            "kind": "kindValue",
            "name": "nameValue"
          }
        },
        "tls": [
          {
            "hosts": [
              "hostsValue"
            ],
            "secretName": "secretNameValue"
          }
        ],
        "rules": [
          {
            "host": "hostValue",
            "http": {
              "paths": [
                {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/telemetry/telemetry.go

    	prefix = strings.ReplaceAll(prefix, servicePortNameStatPattern, portName)
    	return prefix
    }
    
    // shortHostName constructs the name from kubernetes hosts based on attributes (name and namespace).
    // For other hosts like VMs, this method does not do any thing - just returns the passed in host as is.
    func shortHostName(host string, attributes *model.ServiceAttributes) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 02:38:43 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top