Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for mcsz (0.16 sec)

  1. tools/bug-report/pkg/common/common.go

    			"debug/adsz",
    			"debug/authorizationz",
    			"debug/cachez",
    			"debug/clusterz",
    			"debug/configz",
    			"debug/endpointShardz",
    			"debug/endpointz",
    			"debug/inject",
    			"debug/instancesz",
    			"debug/mcsz",
    			"debug/mesh",
    			"debug/networkz",
    			"debug/push_status",
    			"debug/registryz",
    			"debug/resourcesz",
    			"debug/syncz",
    			"debug/telemetryz",
    			"metrics",
    		},
    		proxyDebugURLs: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. architecture/networking/pilot.md

            gdc-.-gcc
        end
        subgraph Ingress
            ic("Ingress Controller")
            isc("Ingress Status Controller")
            ic-.-isc
        end
        mcsc("Multicluster Secret")
        scr("Credentials Controller")
        mcsc--"1 per cluster"-->scr
        mcsc--"1 per cluster"-->ksd
        crd--Depends-->ccs
    
        iwhc("Injection Webhook")
        vwhc("Validation Webhook")
        nsc("Namespace Controller")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/mcs.yaml

    Frank Budinsky <******@****.***> 1697669019 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 572 bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/mcs.yaml.golden

    Frank Budinsky <******@****.***> 1704912850 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. src/internal/coverage/encodemeta/encodefile.go

    	mhsz := uint64(unsafe.Sizeof(coverage.MetaFileHeader{}))
    	stSize := m.stab.Size()
    	stOffset := mhsz + uint64(16*len(blobs))
    	preambleLength := stOffset + uint64(stSize)
    
    	if m.debug {
    		fmt.Fprintf(os.Stderr, "=+= sizeof(MetaFileHeader)=%d\n", mhsz)
    		fmt.Fprintf(os.Stderr, "=+= preambleLength=%d stSize=%d\n", preambleLength, stSize)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    	"k8s.io/apimachinery/pkg/types"
    	mcsapi "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pilot/pkg/serviceregistry/util/xdsfake"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top