Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 375 for GVK (0.32 sec)

  1. pkg/config/analysis/analyzers/virtualservice/gateways.go

    		Description: "Checks the gateways associated with each virtual service",
    		Inputs: []config.GroupVersionKind{
    			gvk.Gateway,
    			gvk.VirtualService,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (s *GatewayAnalyzer) Analyze(c analysis.Context) {
    	c.ForEach(gvk.VirtualService, func(r *resource.Instance) bool {
    		s.analyzeVirtualService(r, c)
    		return true
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 01:28:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/injection/injection-image.go

    		Inputs: []config.GroupVersionKind{
    			gvk.Namespace,
    			gvk.Pod,
    			gvk.ConfigMap,
    			gvk.MeshConfig,
    			gvk.ProxyConfig,
    		},
    	}
    }
    
    // Analyze implements Analyzer.
    func (a *ImageAnalyzer) Analyze(c analysis.Context) {
    	proxyImageMap := make(map[string]string)
    
    	// when multiple injector configmaps exist, we may need to assess them respectively.
    	c.ForEach(gvk.ConfigMap, func(r *resource.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/virtualservice/destinationrules.go

    		Inputs: []config.GroupVersionKind{
    			gvk.VirtualService,
    			gvk.DestinationRule,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (d *DestinationRuleAnalyzer) Analyze(ctx analysis.Context) {
    	// To avoid repeated iteration, precompute the set of existing destination host+subset combinations
    	destHostsAndSubsets := initDestHostsAndSubsets(ctx)
    
    	ctx.ForEach(gvk.VirtualService, func(r *resource.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_test.go

    	}
    
    	tests := []struct {
    		gvk        schema.GroupVersionKind
    		success    bool
    		supports   bool
    		queryParam VerifiableQueryParam
    	}{
    		{
    			gvk: schema.GroupVersionKind{
    				Group:   "",
    				Version: "v1",
    				Kind:    "Pod",
    			},
    			success:    true,
    			supports:   true,
    			queryParam: QueryParamFieldValidation,
    		},
    		{
    			gvk: schema.GroupVersionKind{
    				Group:   "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/crdserverscheme/unstructured.go

    	if _, ok := obj.(runtime.Unstructured); ok {
    		gvk := obj.GetObjectKind().GroupVersionKind()
    		if len(gvk.Kind) == 0 {
    			return nil, false, runtime.NewMissingKindErr("object has no kind field ")
    		}
    		if len(gvk.Version) == 0 {
    			return nil, false, runtime.NewMissingVersionErr("object has no apiVersion field")
    		}
    		return []schema.GroupVersionKind{gvk}, false, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 06 18:08:14 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/gateway/gateway.go

    		Description: "Checks a gateway's ports against the gateway's Kubernetes service ports",
    		Inputs: []config.GroupVersionKind{
    			gvk.Gateway,
    			gvk.Pod,
    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (s *IngressGatewayPortAnalyzer) Analyze(c analysis.Context) {
    	c.ForEach(gvk.Gateway, func(r *resource.Instance) bool {
    		s.analyzeGateway(r, c)
    		return true
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules.go

    func IsExemptAdmissionConfigurationResource(attr admission.Attributes) bool {
    	gvk := attr.GetKind()
    	if gvk.Group == "admissionregistration.k8s.io" {
    		if gvk.Kind == "ValidatingWebhookConfiguration" || gvk.Kind == "MutatingWebhookConfiguration" || gvk.Kind == "ValidatingAdmissionPolicy" || gvk.Kind == "ValidatingAdmissionPolicyBinding" {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		Description: "Checks an envoyFilters ",
    		Inputs: []config.GroupVersionKind{
    			gvk.EnvoyFilter,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (s *EnvoyPatchAnalyzer) Analyze(c analysis.Context) {
    	// hold the filter names that have a proxyVersion set
    	patchFilterNames := make([]string, 0)
    	c.ForEach(gvk.EnvoyFilter, func(r *resource.Instance) bool {
    		names := s.analyzeEnvoyFilterPatch(r, c, patchFilterNames)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_test.go

    )
    
    type testDecodable struct {
    	Other string
    	Value int `json:"value"`
    	gvk   schema.GroupVersionKind
    }
    
    func (d *testDecodable) GetObjectKind() schema.ObjectKind                { return d }
    func (d *testDecodable) SetGroupVersionKind(gvk schema.GroupVersionKind) { d.gvk = gvk }
    func (d *testDecodable) GroupVersionKind() schema.GroupVersionKind       { return d.gvk }
    func (d *testDecodable) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 17:04:19 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/monitor/monitor_test.go

    	"istio.io/istio/pkg/config/schema/collection"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var createConfigSet = []*config.Config{
    	{
    		Meta: config.Meta{
    			Name:             "magic",
    			GroupVersionKind: gvk.Gateway,
    		},
    		Spec: &networking.Gateway{
    			Servers: []*networking.Server{
    				{
    					Port: &networking.Port{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top