Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for GVK (0.13 sec)

  1. pkg/scheduler/scheduler_test.go

    				},
    				Disabled: []schedulerapi.Plugin{{Name: "*"}}, // disable default plugins
    			},
    			want: map[framework.GVK]framework.ActionType{},
    		},
    		{
    			name:    "plugins with default profile",
    			plugins: schedulerapi.PluginSet{Enabled: defaults.PluginsV1.MultiPoint.Enabled},
    			want: map[framework.GVK]framework.ActionType{
    				framework.Pod:                   framework.All,
    				framework.Node:                  framework.All,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    	if c.destRule != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: c.destRule,
    		})
    	}
    	if c.sidecar != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.Sidecar,
    				Name:             "default",
    			},
    			Spec: c.sidecar,
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util_test.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	xdsutil "istio.io/istio/pkg/wellknown"
    )
    
    var testCla = &endpoint.ClusterLoadAssignment{
    	ClusterName: "cluster",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client.go

    	cl.kindsMu.RLock()
    	defer cl.kindsMu.RUnlock()
    	ch, ok := cl.kinds[r]
    	return ch, ok
    }
    
    func TranslateObject(r runtime.Object, gvk config.GroupVersionKind, domainSuffix string) config.Config {
    	translateFunc, f := translationMap[gvk]
    	if !f {
    		scope.Errorf("unknown type %v", gvk)
    		return config.Config{}
    	}
    	c := translateFunc(r)
    	c.Domain = domainSuffix
    	return c
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	objectInterfaces admission.ObjectInterfaces
    }
    
    func (v *versionedAttributeAccessor) VersionedAttribute(gvk schema.GroupVersionKind) (*admission.VersionedAttributes, error) {
    	if v.versionedAttr == nil {
    		// First call, create versioned attributes
    		var err error
    		if v.versionedAttr, err = admission.NewVersionedAttributes(v.attr, gvk, v.objectInterfaces); err != nil {
    			return nil, apierrors.NewInternalError(err)
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    	options ...Option,
    ) *Controller {
    	s := newController(configController, xdsUpdater, meshConfig, options...)
    	if configController != nil {
    		configController.RegisterEventHandler(gvk.ServiceEntry, s.serviceEntryHandler)
    		configController.RegisterEventHandler(gvk.WorkloadEntry, s.workloadEntryHandler)
    	}
    	return s
    }
    
    // NewWorkloadEntryController creates a new WorkloadEntry discovery service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	Transport TransportConfig
    
    	Codec runtime.Codec
    	// EncodeVersioner is the same groupVersioner used to build the
    	// storage encoder. Given a list of kinds the input object might belong
    	// to, the EncodeVersioner outputs the gvk the object will be
    	// converted to before persisted in etcd.
    	EncodeVersioner runtime.GroupVersioner
    	// Transformer allows the value to be transformed prior to persisting into etcd.
    	Transformer value.Transformer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_test.go

    		},
    		Logging: []*tpb.AccessLogging{
    			emptyEnvoyLogging,
    		},
    	}
    	validTelemetryConfigurationWithTargetRef := &tpb.Telemetry{
    		TargetRef: &v1beta1.PolicyTargetReference{
    			Group: gvk.KubernetesGateway.Group,
    			Kind:  gvk.KubernetesGateway.Kind,
    			Name:  "my-gateway",
    		},
    		Tracing: []*tpb.Tracing{
    			emptyStackDriverTracing,
    		},
    		Metrics: []*tpb.Metrics{
    			prometheusMetrics,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. istioctl/pkg/waypoint/waypoint.go

    			return nil, fmt.Errorf("invalid name provided for waypoint, 'none' is a reserved value")
    		}
    		gw := gateway.Gateway{
    			TypeMeta: metav1.TypeMeta{
    				Kind:       gvk.KubernetesGateway_v1.Kind,
    				APIVersion: gvk.KubernetesGateway_v1.GroupVersion(),
    			},
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      waypointName,
    				Namespace: ns,
    			},
    			Spec: gateway.GatewaySpec{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/config_test.go

    			gvkmap, err := kubeadmutil.SplitYAMLDocuments(output.Bytes())
    			if err != nil {
    				t.Fatalf("unexpected failure of SplitYAMLDocuments: %v", err)
    			}
    
    			gotKinds := []string{}
    			for gvk := range gvkmap {
    				gotKinds = append(gotKinds, gvk.Kind)
    			}
    
    			sort.Strings(gotKinds)
    
    			if !reflect.DeepEqual(gotKinds, test.expectedKinds) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top