Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for defaultEndpoint (0.38 sec)

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

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      labels:
        app: foo
      name: sidecar
    spec:
      ingress:
      - defaultEndpoint: 127.0.0.1:8080
        port:
          name: tls
          number: 8080
          protocol: TCP
      - defaultEndpoint: 127.0.0.1:9090
        port:
          name: plaintext
          number: 9090
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster.go

    		} else if len(ingressListener.DefaultEndpoint) > 0 {
    			// parse the ip, port. Validation guarantees presence of :
    			hostIP, hostPort, hostErr := net.SplitHostPort(ingressListener.DefaultEndpoint)
    			if hostPort == "" || hostErr != nil {
    				continue
    			}
    			var err error
    			if port, err = strconv.Atoi(hostPort); err != nil {
    				continue
    			}
    			if hostIP == model.PodIPAddressPrefix {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. cmd/admin-handlers-pools.go

    	adminLogIf(ctx, pools.saveRebalanceStats(GlobalContext, 0, rebalSaveStoppedAt))
    }
    
    func proxyDecommissionRequest(ctx context.Context, defaultEndPoint Endpoint, w http.ResponseWriter, r *http.Request) (proxy bool) {
    	host := env.Get("_MINIO_DECOM_ENDPOINT_HOST", defaultEndPoint.Host)
    	if host == "" {
    		return
    	}
    	for nodeIdx, proxyEp := range globalProxyEndpoints {
    		if proxyEp.Endpoint.Host == host && !proxyEp.IsLocal {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. pilot/pkg/xds/xds_test.go

    kind: Sidecar
    metadata:
      name: sidecar
      namespace:  app
    spec:
    {{- if .IngressListener }}
      ingress:
        - port:
            number: 9080
            protocol: HTTP
            name: custom-http
          defaultEndpoint: unix:///var/run/someuds.sock
    {{- end }}
      egress:
        - hosts:
    {{ range $i, $ns := .ImportedNamespaces }}
          - {{$ns}}
    {{ end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top