Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GVK (1.68 sec)

  1. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    		Description: "Checks if caCertificates is set when TLS mode is SIMPLE/MUTUAL",
    		Inputs: []config.GroupVersionKind{
    			gvk.DestinationRule,
    		},
    	}
    }
    
    func (c *CaCertificateAnalyzer) Analyze(ctx analysis.Context) {
    	ctx.ForEach(gvk.DestinationRule, func(r *resource.Instance) bool {
    		c.analyzeDestinationRule(r, ctx)
    		return true
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	}
    	return nil, err
    }
    
    func (s *serializer) Decode(data []byte, gvk *schema.GroupVersionKind, into runtime.Object) (runtime.Object, *schema.GroupVersionKind, error) {
    	// A preliminary pass over the input to obtain the actual GVK is redundant on a successful
    	// decode into Unstructured.
    	if _, ok := into.(runtime.Unstructured); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    var GlobalTime = time.Now()
    
    // ServiceEntry with a selector
    var selector = &config.Config{
    	Meta: config.Meta{
    		GroupVersionKind:  gvk.ServiceEntry,
    		Name:              "selector",
    		Namespace:         "selector",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. 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)
  6. pkg/kube/krt/informer.go

    	}()
    	return h
    }
    
    // NewInformer creates a Collection[I] sourced from
    // the results of kube.Client querying resources of type I
    // from the API Server.
    //
    // Resources must have their GVR and GVK registered in the
    // kube.Client before this method is called, otherwise
    // NewInformer will panic.
    func NewInformer[I controllers.ComparableObject](c kube.Client, opts ...CollectionOption) Collection[I] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top