Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for mcsz (0.25 sec)

  1. tests/integration/pilot/mcs/common/common.go

    	}{
    		Group:   KubeSettings(t).MCSAPIGroup,
    		Version: KubeSettings(t).MCSAPIVersion,
    	}
    
    	for _, kind := range []string{"serviceexport", "serviceimport"} {
    		// Generate the CRD YAML
    		fileName := fmt.Sprintf("mcs-%s-crd.yaml", kind)
    		crdTemplate, err := os.ReadFile("../../testdata/" + fileName)
    		if err != nil {
    			return err
    		}
    		crdYAML, err := tmpl.Evaluate(string(crdTemplate), params)
    		if err != nil {
    			return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/pilot/mcs/common"
    )
    
    var (
    	i     istio.Instance
    	echos common.EchoDeployment
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pkg/config/schema/codegen/common.go

    	for _, e := range inp.Entries {
    		if strings.Contains(e.Resource.ProtoPackage, "istio.io") &&
    			e.Resource.Kind != "EnvoyFilter" {
    			agentEntries = append(agentEntries, e)
    		}
    	}
    
    	// add MCS types
    	gvrEntries := append([]colEntry{
    		{Resource: &ast.Resource{Identifier: "ServiceExport", Plural: "serviceexports", Version: features.MCSAPIVersion, Group: features.MCSAPIGroup}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	"k8s.io/api/discovery/v1beta1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/selection"
    	"k8s.io/apimachinery/pkg/types"
    	mcs "sigs.k8s.io/mcs-api/pkg/apis/v1alpha1"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/schema/kind"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pkg/dns/server/name_table.go

    				// The agent will take care of resolving a, a.ns, a.ns.svc, etc.
    				// No need to provide a DNS entry for each variant.
    				//
    				// NOTE: This is not done for Kubernetes Multi-Cluster Services (MCS) hosts, in order
    				// to avoid conflicting with the entries for the regular (cluster.local) service.
    				nameInfo.Namespace = svc.Attributes.Namespace
    				nameInfo.Shortname = svc.Attributes.Name
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/util.go

    	return types.NamespacedName{
    		Namespace: svc.Attributes.Namespace,
    		Name:      svc.Attributes.Name,
    	}
    }
    
    // serviceClusterSetLocalHostname produces Kubernetes Multi-Cluster Services (MCS) ClusterSet FQDN for a k8s service
    func serviceClusterSetLocalHostname(nn types.NamespacedName) host.Name {
    	return host.Name(nn.Name + "." + nn.Namespace + "." + "svc" + "." + constants.DefaultClusterSetLocalDomain)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 02:01:47 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                                forcedEdges.add(incomingEdge);
                                if (currentVersion == null) {
                                    currentVersion = mcs.getVersion();
                                } else {
                                    if (!currentVersion.equals(mcs.getVersion())) {
                                        hasMultipleVersions = true;
                                    }
                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    	}
    
    	return ln, tcpAddr.Port, nil
    }
    
    type multipleControls []func(network, addr string, conn syscall.RawConn) error
    
    func (mcs multipleControls) Control(network, addr string, conn syscall.RawConn) error {
    	for _, c := range mcs {
    		if err := c(network, addr, conn); err != nil {
    			return err
    		}
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  9. pkg/test/framework/components/echo/config.go

    	// ClusterLocalFQDN returns the fully qualified domain name for cluster-local host.
    	ClusterLocalFQDN() string
    
    	// ClusterSetLocalFQDN returns the fully qualified domain name for the Kubernetes
    	// Multi-Cluster Services (MCS) Cluster Set host.
    	ClusterSetLocalFQDN() string
    
    	// PortForName is a short form for Config().Ports.MustForName().
    	PortForName(name string) Port
    }
    
    type VMDistro = string
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    	c.crdHandlers = append(c.crdHandlers, f)
    }
    
    // hostNamesForNamespacedName returns all possible hostnames for the given service name.
    // If Kubernetes Multi-Cluster Services (MCS) is enabled, this will contain the regular
    // hostname as well as the MCS hostname (clusterset.local). Otherwise, only the regular
    // hostname will be returned.
    func (c *Controller) hostNamesForNamespacedName(name types.NamespacedName) []host.Name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top