Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 15080 (0.03 sec)

  1. pilot/pkg/networking/core/listener_test.go

    		},
    		Spec: &networking.Sidecar{
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"default/*"},
    					Port: &networking.SidecarPort{
    						Number:   15080,
    						Protocol: "HTTP_PROXY",
    						Name:     "15080",
    					},
    					Bind:        "127.0.0.1",
    					CaptureMode: networking.CaptureMode_NONE,
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. manifests/charts/gateway/templates/deployment.yaml

              {{- end }}
              {{- range $key, $val := .Values.env }}
              - name: {{ $key }}
                value: {{ $val | quote }}
              {{- end }}
              ports:
              - containerPort: 15090
                protocol: TCP
                name: http-envoy-prom
              resources:
                {{- toYaml .Values.resources | nindent 12 }}
              {{- with .Values.volumeMounts }}
              volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    // We could completely reject but that seems more likely to cause pain.
    func unexpectedWaypointListener(l k8s.Listener) bool {
    	if l.Port != 15008 {
    		return true
    	}
    	if l.Protocol != k8s.ProtocolType(protocol.HBONE) {
    		return true
    	}
    	return false
    }
    
    func getListenerNames(obj config.Config) sets.Set[k8s.SectionName] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    	s.initGrpcServer(args.KeepaliveOptions)
    	multiplexGRPC := false
    	if args.ServerOptions.GRPCAddr != "" {
    		s.grpcAddress = args.ServerOptions.GRPCAddr
    	} else {
    		// This happens only if the GRPC port (15010) is disabled. We will multiplex
    		// it on the HTTP port. Does not impact the HTTPS gRPC or HTTPS.
    		log.Infof("multiplexing gRPC on http addr %v", args.ServerOptions.HTTPAddr)
    		multiplexGRPC = true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 🌐 Add Ukrainian translation for `docs/uk/docs/python-types.md`. PR [#10080](https://github.com/tiangolo/fastapi/pull/10080) by [@rostik1410](https://github.com/rostik1410).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top