Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PilotGatewayAPI (0.17 sec)

  1. pkg/config/schema/collections/extras.go

    import (
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/schema/collection"
    )
    
    var Istio = Pilot.Add(MeshNetworks).Add(MeshConfig)
    
    func PilotGatewayAPI() collection.Schemas {
    	if features.EnableAlphaGatewayAPI {
    		return pilotGatewayAPI
    	}
    	return pilotStableGatewayAPI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 17:26:01 UTC 2023
    - 897 bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/templates/collections.go.tmpl

    	{{- range .Entries }}
    		{{- if (contains .Resource.Group "istio.io") }}
    		MustAdd({{ .Resource.Identifier }}).
    		{{- end}}
    	{{- end }}
    		Build()
    
    	// pilotGatewayAPI contains only collections used by Pilot, including the full Gateway API.
    	pilotGatewayAPI = collection.NewSchemasBuilder().
    	{{- range .Entries }}
    		{{- if or (contains .Resource.Group "istio.io") (contains .Resource.Group "gateway.networking.k8s.io") }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/validation.go

    	if s.kubeClient == nil {
    		return nil
    	}
    
    	log.Info("initializing config validator")
    	// always start the validation server
    	params := server.Options{
    		Schemas:      collections.PilotGatewayAPI(),
    		DomainSuffix: args.RegistryOptions.KubeOptions.DomainSuffix,
    		Mux:          s.httpsMux,
    	}
    	_, err := server.New(params)
    	if err != nil {
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crd/conversion.go

    			return nil, nil, fmt.Errorf("cannot parse proto message: %v", err)
    		}
    		if reflect.DeepEqual(obj, empty) {
    			continue
    		}
    
    		gvk := obj.GroupVersionKind()
    		s, exists := collections.PilotGatewayAPI().FindByGroupVersionAliasesKind(resource.FromKubernetesGVK(&gvk))
    		if !exists {
    			log.Debugf("unrecognized type %v", obj.Kind)
    			others = append(others, obj)
    			continue
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top