Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,153 for _gateway (0.24 sec)

  1. src/net/conf_test.go

    				{"myHostname", "myhostname", hostLookupCgo},
    				{"myhostname.dot", "myhostname.dot", hostLookupCgo},
    				{"myHostname.dot", "myhostname.dot", hostLookupCgo},
    				{"_gateway", "myhostname", hostLookupCgo},
    				{"_Gateway", "myhostname", hostLookupCgo},
    				{"_outbound", "myhostname", hostLookupCgo},
    				{"_Outbound", "myhostname", hostLookupCgo},
    				{"localhost", "myhostname", hostLookupCgo},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/net/conf.go

    }
    
    // isGateway reports whether h should be considered a "gateway"
    // name for the myhostname NSS module.
    func isGateway(h string) bool {
    	return stringsEqualFold(h, "_gateway")
    }
    
    // isOutbound reports whether h should be considered an "outbound"
    // name for the myhostname NSS module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/virtualservice/gateways.go

    			continue
    		}
    
    		gwFullName := resource.NewShortOrFullName(vsNs, gwName)
    
    		if !c.Exists(gvk.Gateway, gwFullName) {
    			m := msg.NewReferencedResourceNotFound(r, "gateway", gwName)
    
    			if line, ok := util.ErrorLine(r, fmt.Sprintf(util.VSGateway, i)); ok {
    				m.Line = line
    			}
    
    			c.Report(gvk.VirtualService, m)
    		}
    
    		if !vsHostInGateway(c, gwFullName, vs.Hosts, vsNs.String()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 01:28:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    	autoPassthrough := false
    
    	log.Debugf("MergeGateways: merging %d gateways", len(gateways))
    	for _, gwAndInstance := range gateways {
    		gatewayConfig := gwAndInstance.gateway
    		gatewayName := gatewayConfig.Namespace + "/" + gatewayConfig.Name // Format: %s/%s
    		gatewayCfg := gatewayConfig.Spec.(*networking.Gateway)
    		log.Debugf("MergeGateways: merging gateway %q :\n%v", gatewayName, gatewayCfg)
    		snames := sets.String{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. pilot/pkg/xds/testdata/benchmarks/knative-gateway.yaml

    spec:
      hosts:
      - knative-local-gateway.istio-system.svc.cluster.local
      ports:
      - number: 80
        targetPort: 8081
        name: http
        protocol: HTTP
      resolution: STATIC
      endpoints:
      - address: 1.1.1.1
        labels:
          istio.io/benchmark: "true"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: knative-ingress-gateway
      namespace: knative-serving
    spec:
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 19 16:50:51 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    	if _, ok := merged.ServersByRouteName[routeName]; !ok {
    		log.Warnf("Gateway missing for route %s. This is normal if gateway was recently deleted.", routeName)
    
    		// This can happen when a gateway has recently been deleted. Envoy will still request route
    		// information due to the draining of listeners, so we should not return an error.
    		return &route.RouteConfiguration{
    			Name:             routeName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. releasenotes/notes/gateway-api118.yaml

        Note that this only applies to the Kubernetes Gateway API, not the Istio `Gateway`.
        You can check if you are using this feature with the following command:
    
        {{< text bash >}}
        $ kubectl get gateways.gateway.networking.k8s.io -ojson | jq -r '.items[] | select(.spec.gatewayClassName == "istio") | select((.spec.addresses | length) == 0) | "Found managed gateway: " + .metadata.namespace + "/" + .metadata.name'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 08:37:21 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. samples/httpbin/httpbin-gateway.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:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: httpbin
    spec:
      hosts:
      - "*"
      gateways:
      - httpbin-gateway
      http:
      - route:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jun 22 17:54:07 UTC 2019
    - 474 bytes
    - Viewed (0)
  9. samples/helloworld/helloworld-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: helloworld-gateway
    spec:
      selector:
        istio: ingressgateway # use istio default controller
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: helloworld
    spec:
      hosts:
      - "*"
      gateways:
      - helloworld-gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 14 21:21:11 UTC 2019
    - 561 bytes
    - Viewed (0)
  10. pilot/pkg/xds/testdata/benchmarks/gateways.yaml

    {{- range $i := until .Services }}
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: vs-{{$i}}
      namespace: gateway
    spec:
      hosts:
      - random-a-{{$i}}.host.example
      - random-b-{{$i}}.host.example
      - random-c-{{$i}}.host.example
      gateways:
      - gateway/gateway-{{$i}}
      http:
      - match:
        - uri:
            prefix: "/route-{{$i}}"
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 03 15:29:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top