Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NewForSchemas (0.45 sec)

  1. pkg/config/analysis/incluster/controller.go

    	ia.AddSource(rwConfigStore)
    
    	// Filter out configs watched by rwConfigStore so we don't watch multiple times
    	store := crdclient.NewForSchemas(kubeClient,
    		crdclient.Option{
    			Revision:     revision,
    			DomainSuffix: domainSuffix,
    			Identifier:   "analysis-controller",
    			FiltersByGVK: ia.GetFiltersByGVK(),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    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{}
    	for _, s := range schemas.All() {
    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. pkg/config/analysis/local/istiod_analyze.go

    	krs := sa.kubeResources.Remove(kuberesource.DefaultExcludedSchemas().All()...)
    	if remote {
    		krs = krs.Remove(kuberesource.DefaultRemoteClusterExcludedSchemas().All()...)
    	}
    	store := crdclient.NewForSchemas(c, crdclient.Option{
    		Revision:     revision,
    		DomainSuffix: "cluster.local",
    		Identifier:   "analysis-controller",
    		FiltersByGVK: map[config.GroupVersionKind]kubetypes.Filter{
    			gvk.ConfigMap: {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		MustAdd(collections.WorkloadEntry).
    		Build()
    	crdOpts := crdclient.Option{Revision: revision, DomainSuffix: opts.DomainSuffix, Identifier: "mc-workload-entry-controller"}
    	return crdclient.NewForSchemas(client, crdOpts, workloadEntriesSchemas)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top