Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for mcsz (0.08 sec)

  1. pkg/config/analysis/local/istiod_analyze.go

    		c.RunAndWait(cancel)
    	}
    
    	store, err := aggregate.MakeWriteableCache(allstores, nil)
    	if err != nil {
    		return err
    	}
    	sa.multiClusterStores[sa.cluster] = store
    	for _, mcs := range sa.multiClusterStores {
    		go mcs.Run(cancel)
    	}
    	return nil
    }
    
    type dfCache struct {
    	model.ConfigStore
    }
    
    func (d dfCache) RegisterEventHandler(kind config.GroupVersionKind, handler model.EventHandler) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/ep_filters.go

    // gateways that match against cluster has the following advantages:
    //
    //  1. Potentially reducing extra latency incurred when the gateway and endpoint reside in different
    //     clusters.
    //
    //  2. Enables Kubernetes MCS use cases, where endpoints for a service might be exported in one
    //     cluster but not another within the same network. By targeting the gateway for the cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/conversion.go

    	if svc.Attributes.ExternalName == "" {
    		return nil
    	}
    	out := make([]*model.IstioEndpoint, 0, len(svc.Ports))
    
    	discoverabilityPolicy := model.AlwaysDiscoverable
    	if features.EnableMCSServiceDiscovery {
    		// MCS spec does not allow export of external name services.
    		// See https://github.com/kubernetes/enhancements/tree/master/keps/sig-multicluster/1645-multi-cluster-services-api#exporting-services.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. pkg/config/constants/constants.go

    	DefaultClusterLocalDomain = "cluster.local"
    
    	// DefaultClusterSetLocalDomain is the default domain suffix for Kubernetes Multi-Cluster Services (MCS)
    	// used for load balancing requests against endpoints across the ClusterSet (i.e. mesh).
    	DefaultClusterSetLocalDomain = "clusterset.local"
    
    	// DefaultClusterName is the default cluster name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. go.mod

    	k8s.io/client-go v0.30.1
    	k8s.io/klog/v2 v2.120.1
    	k8s.io/kubectl v0.30.1
    	k8s.io/utils v0.0.0-20240502163921-fe8a2dddb1d0
    	sigs.k8s.io/controller-runtime v0.18.3
    	sigs.k8s.io/gateway-api v1.1.0
    	sigs.k8s.io/mcs-api v0.1.0
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	cel.dev/expr v0.15.0 // indirect
    	github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
    	github.com/BurntSushi/toml v1.3.2 // indirect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. docs/pl/docs/help-fastapi.md

    ## Dołącz do czatu
    
    Dołącz do 👥 <a href="https://discord.gg/VQjSZaeJmf" class="external-link" target="_blank">serwera czatu na Discordzie</a> 👥 i spędzaj czas z innymi w społeczności FastAPI.
    
    !!! tip "Wskazówka"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. docs/pl/docs/index.md

        * Interaktywne systemy dokumentacji.
        * Systemy automatycznego generowania kodu klienckiego, dla wielu języków.
    * Dostarczy bezpośrednio 2 interaktywne dokumentacje webowe.
    
    ---
    
    To dopiero początek, ale już masz mniej-więcej pojęcie jak to wszystko działa.
    
    Spróbuj zmienić linijkę:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...z:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/service.go

    	GetProxyWorkloadLabels(*Proxy) labels.Instance
    
    	// MCSServices returns information about the services that have been exported/imported via the
    	// Kubernetes Multi-Cluster Services (MCS) ServiceExport API. Only applies to services in
    	// Kubernetes clusters.
    	MCSServices() []MCSServiceInfo
    	AmbientIndexes
    }
    
    type AmbientIndexes interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  9. pkg/kube/client.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/kube/informerfactory"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/lazy"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/sleep"
    	"istio.io/istio/pkg/test/util/yml"
    	"istio.io/istio/pkg/version"
    )
    
    const (
    	defaultLocalAddress = "localhost"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion_test.go

    			),
    		},
    		{name: "serviceentry"},
    		{name: "eastwest"},
    		{name: "eastwest-tlsoption"},
    		{name: "eastwest-labelport"},
    		{name: "eastwest-remote"},
    		{name: "alias"},
    		{name: "mcs"},
    		{name: "route-precedence"},
    		{name: "waypoint"},
    		{name: "isolation"},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
Back to top