Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for GVK (0.02 sec)

  1. pilot/pkg/model/push_context_test.go

    		"invalid-type": {
    			Meta: config.Meta{Name: "invalid-type", Namespace: constants.IstioSystemNamespace, GroupVersionKind: gvk.WasmPlugin},
    			Spec: &networking.DestinationRule{},
    		},
    		"invalid-url": {
    			Meta: config.Meta{Name: "invalid-url", Namespace: constants.IstioSystemNamespace, GroupVersionKind: gvk.WasmPlugin},
    			Spec: &extensions.WasmPlugin{
    				Phase:    extensions.PluginPhase_AUTHN,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/deployment/services.go

    		Description: "Checks association between services and pods",
    		Inputs: []config.GroupVersionKind{
    			gvk.Service,
    			gvk.Deployment,
    			gvk.Namespace,
    		},
    	}
    }
    
    func (s *ServiceAssociationAnalyzer) Analyze(c analysis.Context) {
    	c.ForEach(gvk.Deployment, func(r *resource.Instance) bool {
    		if !isWaypointDeployment(r) && util.DeploymentInMesh(r, c) {
    			s.analyzeDeploymentPortProtocol(r, c)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/controller_test.go

    	store.Create(config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.GatewayClass,
    			Name:             "gwclass",
    			Namespace:        "ns1",
    		},
    		Spec: gatewayClassSpec,
    	})
    	if _, err := store.Create(config.Config{
    		Meta: config.Meta{
    			GroupVersionKind: gvk.KubernetesGateway,
    			Name:             "gwspec",
    			Namespace:        "ns1",
    		},
    		Spec: gatewaySpec,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/controller_ref.go

    		}
    	}
    	return nil
    }
    
    // NewControllerRef creates an OwnerReference pointing to the given owner.
    func NewControllerRef(owner Object, gvk schema.GroupVersionKind) *OwnerReference {
    	return &OwnerReference{
    		APIVersion:         gvk.GroupVersion().String(),
    		Kind:               gvk.Kind,
    		Name:               owner.GetName(),
    		UID:                owner.GetUID(),
    		BlockOwnerDeletion: ptr.To(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 05:14:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test"
    )
    
    var (
    	GlobalTime = time.Now()
    	httpNone   = &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk.ServiceEntry,
    			Name:              "httpNone",
    			Namespace:         "httpNone",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters_test.go

    	Config         config.Config
    	Configs        []config.Config
    	IsMtlsDisabled bool
    	SubsetName     string
    }{
    	gvk.PeerAuthentication.String(): {
    		"mtls-off-ineffective": {
    			Config: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.PeerAuthentication,
    					Name:             "mtls-partial",
    					Namespace:        "istio-system",
    				},
    				Spec: &security.PeerAuthentication{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/policyattachment.go

    		if config.CanonicalGroup(targetRef.GetGroup()) == gvk.KubernetesGateway.CanonicalGroup() &&
    			targetRef.GetKind() == gvk.KubernetesGateway.Kind &&
    			target.Name == gatewayName &&
    			(targetRef.GetNamespace() == "" || targetRef.GetNamespace() == p.Namespace) {
    			return true
    		}
    
    		// Service attached
    		if p.IsWaypoint &&
    			config.CanonicalGroup(targetRef.GetGroup()) == gvk.Service.CanonicalGroup() &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    			}
    			if string(from.Group) == gvk.KubernetesGateway.Group && string(from.Kind) == gvk.KubernetesGateway.Kind {
    				fromKey.Kind = gvk.KubernetesGateway
    			} else if string(from.Group) == gvk.HTTPRoute.Group && string(from.Kind) == gvk.HTTPRoute.Kind {
    				fromKey.Kind = gvk.HTTPRoute
    			} else if string(from.Group) == gvk.TLSRoute.Group && string(from.Kind) == gvk.TLSRoute.Kind {
    				fromKey.Kind = gvk.TLSRoute
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/controller.go

    		if !process {
    			continue
    		}
    
    		switch typ {
    		case gvk.VirtualService:
    			ConvertIngressVirtualService(*ingress, c.domainSuffix, ingressByHost, c.services)
    		case gvk.Gateway:
    			gateways := ConvertIngressV1alpha3(*ingress, c.meshWatcher.Mesh(), c.domainSuffix)
    			out = append(out, gateways)
    		}
    	}
    
    	if typ == gvk.VirtualService {
    		for _, obj := range ingressByHost {
    			out = append(out, *obj)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/model.go

    	if err != nil {
    		log.Warnf("failed to parse resource name %q: %v", resourceName, err)
    		return false
    	}
    	from := Reference{Kind: gvk.KubernetesGateway, Namespace: k8s.Namespace(namespace)}
    	to := Reference{Kind: gvk.Secret, Namespace: k8s.Namespace(p.Namespace)}
    	allow := refs[from][to]
    	if allow == nil {
    		return false
    	}
    	return allow.AllowAll || allow.AllowedNames.Contains(p.Name)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top