Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PilotGatewayAPI (0.15 sec)

  1. pilot/test/xds/fake.go

    	}
    	mc := multicluster.NewFakeController()
    	creds := kubesecrets.NewMulticluster(opts.DefaultClusterName, mc)
    
    	configController := memory.NewSyncController(memory.MakeSkipValidation(collections.PilotGatewayAPI()))
    	clientBuilder := opts.KubeClientBuilder
    	if clientBuilder == nil {
    		clientBuilder = func(objects ...runtime.Object) kubelib.Client {
    			return kubelib.NewFakeClientWithVersion(opts.KubernetesVersion, objects...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    }
    
    var _ model.ConfigStoreController = &Client{}
    
    func New(client kube.Client, opts Option) *Client {
    	schemas := collections.Pilot
    	if features.EnableGatewayAPI {
    		schemas = collections.PilotGatewayAPI()
    	}
    	return NewForSchemas(client, opts, schemas)
    }
    
    func NewForSchemas(client kube.Client, opts Option, schemas collection.Schemas) *Client {
    	schemasByCRDName := map[string]resource.Schema{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    				Reason:         model.NewReasonStats(model.ConfigUpdate),
    			}
    			s.XDSServer.ConfigUpdate(pushReq)
    		}
    		schemas := collections.Pilot.All()
    		if features.EnableGatewayAPI {
    			schemas = collections.PilotGatewayAPI().All()
    		}
    		for _, schema := range schemas {
    			// This resource type was handled in external/servicediscovery.go, no need to rehandle here.
    			if schema.GroupVersionKind() == gvk.ServiceEntry {
    				continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top