Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for mcsz (0.06 sec)

  1. pkg/test/framework/components/istio/cleanup.go

    	})
    	for _, c := range ctx.Clusters().Primaries() {
    		c := c
    		g.Go(func() error {
    			kube2.DumpDebug(ctx, c, d, "configz", ns)
    			return nil
    		})
    		g.Go(func() error {
    			kube2.DumpDebug(ctx, c, d, "mcsz", ns)
    			return nil
    		})
    		g.Go(func() error {
    			kube2.DumpDebug(ctx, c, d, "clusterz", ns)
    			return nil
    		})
    	}
    	// Dump istio-cni.
    	g.Go(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/debug.go

    	s.addDebugHandler(mux, internalMux, "/debug/networkz", "List cross-network gateways", s.networkz)
    	s.addDebugHandler(mux, internalMux, "/debug/mcsz", "List information about Kubernetes MCS services", s.mcsz)
    
    	s.addDebugHandler(mux, internalMux, "/debug/list", "List all supported debug commands in json", s.list)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/serviceimportcache.go

    // reads ServiceImport in the cluster in order to extract the ClusterSet VIP and generate a
    // synthetic service for the MCS host (i.e. clusterset.local). The aggregate.Controller will then
    // merge together the MCS services from all the clusters, filling out the full map of Cluster IPs.
    //
    // The synthetic MCS service is a copy of the real k8s Service (e.g. cluster.local) with the same
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/kube/mcs"
    )
    
    type exportedService struct {
    	namespacedName  types.NamespacedName
    	discoverability map[host.Name]string
    }
    
    // serviceExportCache reads Kubernetes Multi-Cluster Services (MCS) ServiceExport resources in the
    // cluster and generates discoverability policies for the endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. pilot/pkg/features/experimental.go

    	MCSAPIVersion = env.Register("MCS_API_VERSION", "v1alpha1",
    		"The version to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	EnableMCSAutoExport = env.Register(
    		"ENABLE_MCS_AUTO_EXPORT",
    		false,
    		"If enabled, istiod will automatically generate Kubernetes "+
    			"Multi-Cluster Services (MCS) ServiceExport resources for every "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    	"sigs.k8s.io/yaml"
    
    	"istio.io/api/annotation"
    	kube "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/model"
    	serviceRegistryKube "istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      - apiGroups: [""]
        resources: ["secrets"]
        verbs: ["get", "watch", "list"]
    
      # Used for MCS serviceexport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceexports"]
        verbs: [ "get", "watch", "list", "create", "delete"]
    
      # Used for MCS serviceimport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceimports"]
        verbs: ["get", "watch", "list"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/templates/clusterrole.yaml

      - apiGroups: [""]
        resources: ["secrets"]
        verbs: ["get", "watch", "list"]
    
      # Used for MCS serviceexport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceexports"]
        verbs: [ "get", "watch", "list", "create", "delete"]
    
      # Used for MCS serviceimport management
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceimports"]
        verbs: ["get", "watch", "list"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pkg/test/framework/components/environment/kube/settings.go

    	Architecture string
    
    	// MCSControllerEnabled indicates that the Kubernetes environment has a Multi-Cluster Services (MCS)
    	// controller up and running.
    	MCSControllerEnabled bool
    
    	// MCSAPIGroup the group to use for the MCS API
    	MCSAPIGroup string
    
    	// MCSAPIVersion the version to use for the MCS API
    	MCSAPIVersion string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top