Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for grpcName (0.13 sec)

  1. pkg/test/framework/components/authz/kubelocal.go

    }
    
    func (s *localServerImpl) grpcName() string {
    	return fmt.Sprintf("%s-%s-local", grpcName, s.ns.Prefix())
    }
    
    func (s *localServerImpl) httpHost() string {
    	return fmt.Sprintf("%s.%s.local", httpName, s.ns.Prefix())
    }
    
    func (s *localServerImpl) grpcHost() string {
    	return fmt.Sprintf("%s.%s.local", grpcName, s.ns.Prefix())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/authz/kube.go

    }
    
    func (s *serverImpl) templateArgs() map[string]any {
    	fqdn := fmt.Sprintf("ext-authz.%s.svc.cluster.local", s.ns.Name())
    	return map[string]any{
    		"fqdn":     fqdn,
    		"httpName": httpName,
    		"grpcName": grpcName,
    		"httpPort": httpPort,
    		"grpcPort": grpcPort,
    	}
    }
    
    func installProviders(ctx resource.Context, providerYAML string) error {
    	var ist istio.Instance
    	ist, err := istio.Get(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/portgen.go

    		next: map[protocol.Instance]int{
    			protocol.HTTP:    httpBase,
    			protocol.HTTPS:   httpsBase,
    			protocol.TLS:     httpsBase,
    			protocol.TCP:     tcpBase,
    			protocol.GRPCWeb: grpcBase,
    			protocol.GRPC:    grpcBase,
    			protocol.Mongo:   tcpBase,
    			protocol.MySQL:   tcpBase,
    			protocol.Redis:   tcpBase,
    			protocol.UDP:     tcpBase,
    		},
    		used: make(map[int]struct{}),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top