Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for mcp (0.04 sec)

  1. releasenotes/notes/mcp-removal.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 28634
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 202 bytes
    - Viewed (0)
  2. pkg/config/conversion.go

    import (
    	"google.golang.org/protobuf/types/known/timestamppb"
    
    	mcp "istio.io/api/mcp/v1alpha1"
    )
    
    // Convert from model.Config, which has no associated proto, to MCP Resource proto.
    // TODO: define a proto matching Config - to avoid useless superficial conversions.
    func PilotConfigToResource(c *Config) (*mcp.Resource, error) {
    	r := &mcp.Resource{}
    
    	// MCP, K8S and Istio configs use gogo configs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 17:19:38 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/apigen/apigen.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/log"
    )
    
    // APIGenerator supports generation of high-level API resources, similar with the MCP
    // protocol. This is a replacement for MCP, using XDS (and in future UDPA) as a transport.
    // Based on lessons from MCP, the protocol allows incremental updates by
    // default, using the same mechanism that EDS is using, i.e. sending only changed resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. pkg/adsc/adsc_test.go

    }
    
    func constructResourceWithOptions(name string, host string, address, version string, options ...func(resource *mcp.Resource)) *anypb.Any {
    	service := &networking.ServiceEntry{
    		Hosts:     []string{host},
    		Addresses: []string{address},
    	}
    	seAny := protoconv.MessageToAny(service)
    	resource := &mcp.Resource{
    		Metadata: &mcp.Metadata{
    			Name:       "default/" + name,
    			CreateTime: timestamppb.Now(),
    			Version:    version,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. pkg/config/resource/serialization.go

    import (
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/kube/controllers"
    )
    
    // PilotConfigToInstance convert from config.Config, which has no associated proto, to MCP Resource proto.
    func PilotConfigToInstance(c *config.Config, schema resource.Schema) *Instance {
    	return &Instance{
    		Metadata: Metadata{
    			Schema:      schema,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 18 16:33:33 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pkg/adsc/adsc.go

    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/protobuf/proto"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    	pstruct "google.golang.org/protobuf/types/known/structpb"
    
    	mcp "istio.io/api/mcp/v1alpha1"
    	"istio.io/api/mesh/v1alpha1"
    	mem "istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/serviceregistry/memory"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/configcontroller.go

    const (
    	// fs:///PATH will load local files. This replaces --configDir.
    	// example fs:///tmp/configroot
    	// PATH can be mounted from a config map or volume
    	File ConfigSourceAddressScheme = "fs"
    	// xds://ADDRESS - load XDS-over-MCP sources
    	// example xds://127.0.0.1:49133
    	XDS ConfigSourceAddressScheme = "xds"
    	// k8s:// - load in-cluster k8s controller
    	// example k8s://
    	Kubernetes ConfigSourceAddressScheme = "k8s"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. istioctl/pkg/clioptions/central.go

    	XDSSAN string
    
    	// Plaintext forces plain text communication (for talking to port 15010)
    	Plaintext bool
    
    	// GCP project number or ID to use for XDS calls, if any.
    	GCPProject string
    
    	// Istiod address. For MCP may be different than Xds.
    	IstiodAddr string
    }
    
    // AttachControlPlaneFlags attaches control-plane flags to a Cobra command.
    // (Currently just --endpoint)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 06 03:39:27 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. CODEOWNERS

    /pkg/monitoring/                                                 @istio/wg-networking-maintainers @istio/wg-policies-and-telemetry-maintainers
    /pkg/kube/                                                       @istio/wg-networking-maintainers
    /pkg/mcp/                                                        @istio/wg-networking-maintainers
    /pkg/queue/                                                      @istio/wg-networking-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/local/context.go

    		Type:            col,
    		FullName:        res.Metadata.FullName,
    		ResourceVersion: resource.Version(cfg.ResourceVersion),
    		Ref:             outref,
    		FieldsMap:       out,
    		Cluster:         cluster,
    	}
    	// MCP is not aware of generation, add that here.
    	res.Metadata.Generation = cfg.Generation
    	return res, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top