Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for gvr (0.28 sec)

  1. pkg/controller/resourcequota/resource_quota_monitor.go

    		return true
    	}
    	klog.FromContext(ctx).V(4).Info("QuotaMonitor process object",
    		"resource", event.gvr.String(),
    		"namespace", accessor.GetNamespace(),
    		"name", accessor.GetName(),
    		"uid", string(accessor.GetUID()),
    		"eventType", event.eventType,
    	)
    	qm.replenishmentFunc(ctx, event.gvr.GroupResource(), accessor.GetNamespace())
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. istioctl/pkg/xds/google.go

    }
    
    func getHubMembership(ctx context.Context, exClient kube.CLIClient) (*hubMembership, error) {
    	client := exClient.Dynamic()
    	gvr := schema.GroupVersionResource{
    		Group:    "hub.gke.io",
    		Version:  "v1",
    		Resource: "memberships",
    	}
    	u, err := client.Resource(gvr).Get(ctx, "membership", metav1.GetOptions{})
    	if err != nil {
    		return nil, err
    	}
    	spec, ok := u.Object["spec"].(map[string]any)
    	if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	// Attempting to use same logic as webhook for constructing resource
    	// GVK, GVR, subresource
    	// Use the GVK, GVR that the matcher decided was equivalent to that of the request
    	// https://github.com/kubernetes/kubernetes/blob/90c362b3430bcbbf8f245fadbcd521dab39f1d7c/staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go#L182-L210
    	gvk := equivalentKind
    	gvr := equivalentGVR
    	subresource := attr.GetSubresource()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. tests/integration/operator/uninstall_test.go

    	}
    }
    
    func checkIopExist(cs istiokube.CLIClient, iopName string) (bool, error) {
    	scopes.Framework.Infof("checking IstioOperator CR status")
    	gvr := iopv1alpha1.IstioOperatorGVR
    
    	_, err := cs.Dynamic().Resource(gvr).Namespace(IstioNamespace).Get(context.TODO(), iopName, metav1.GetOptions{})
    	if errors.IsNotFound(err) {
    		return false, nil
    	} else if err == nil {
    		return true, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pkg/registry/admissionregistration/validatingadmissionpolicy/authz.go

    		// we only need to authorize the parsed group/version
    		apiGroup = gv.Group
    		apiVersion = gv.Version
    		if gvr, err := v.resourceResolver.Resolve(gv.WithKind(paramKind.Kind)); err == nil {
    			// we only need to authorize the resolved resource
    			resource = gvr.Resource
    		}
    	}
    
    	// require that the user can read (verb "get") the referred kind.
    	attrs := authorizer.AttributesRecord{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. pkg/kube/informerfactory/factory.go

    import (
    	"fmt"
    	"runtime/debug"
    	"sync"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // NewInformerFunc returns a SharedIndexInformer.
    type NewInformerFunc func() cache.SharedIndexInformer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. tests/integration/operator/switch_cr_test.go

    	scopes.Framework.Info("cleaning up in-cluster CRs")
    	gvr := iopv1alpha1.IstioOperatorGVR
    	crList, err := cs.Dynamic().Resource(gvr).Namespace(IstioNamespace).List(context.TODO(),
    		metav1.ListOptions{})
    	if err == nil {
    		for _, obj := range crList.Items {
    			t.Logf("deleting CR %v", obj.GetName())
    			if err := cs.Dynamic().Resource(gvr).Namespace(IstioNamespace).Delete(context.TODO(), obj.GetName(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. pilot/pkg/status/resource.go

    		Generation:           strconv.FormatInt(i.Generation, 10),
    	}
    }
    
    func ResourceFromModelConfig(c config.Config) Resource {
    	gvr, ok := gvk.ToGVR(c.GroupVersionKind)
    	if !ok {
    		return Resource{}
    	}
    	return Resource{
    		GroupVersionResource: gvr,
    		Namespace:            c.Namespace,
    		Name:                 c.Name,
    		Generation:           strconv.FormatInt(c.Generation, 10),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 30 16:13:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/fake/clientset_generated.go

    	cs.AddReactor("*", "*", testing.ObjectReaction(o))
    	cs.AddWatchReactor("*", func(action testing.Action) (handled bool, ret watch.Interface, err error) {
    		gvr := action.GetResource()
    		ns := action.GetNamespace()
    		watch, err := o.Watch(gvr, ns)
    		if err != nil {
    			return false, nil, err
    		}
    		return true, watch, nil
    	})
    
    	return cs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 21:36:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/testing/testing.go

    func (r *VolumeReactor) Watch(gvr schema.GroupVersionResource, ns string) (watch.Interface, error) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	fakewatcher := watch.NewRaceFreeFake()
    
    	if _, exists := r.watchers[gvr]; !exists {
    		r.watchers[gvr] = make(map[string][]*watch.RaceFreeFakeWatcher)
    	}
    	r.watchers[gvr][ns] = append(r.watchers[gvr][ns], fakewatcher)
    	return fakewatcher, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top