Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for ifconfig (0.21 sec)

  1. build/common.sh

    #
    # This will set the global var KUBE_RSYNC_ADDR to the effective port that the
    # rsync daemon can be reached out.
    function kube::build::start_rsyncd_container() {
      IPTOOL=ifconfig
      if kube::build::has_ip ; then
        IPTOOL="ip address"
      fi
      kube::build::stop_rsyncd_container
      V=3 kube::log::status "Starting rsyncd container"
      kube::build::run_build_command_ex \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/hns_test.go

    	t.Skip("Skipping failing test on Windows.")
    	hns := hns{hcn: newHcnImpl()}
    	Network := mustTestNetwork(t)
    
    	ipConfig := &hcn.IpConfig{
    		IpAddress: epIpAddress,
    	}
    	Endpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipConfig},
    		MacAddress:       epMacAddress,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    // TODO putting this here for now to deal with circular imports, needs to be moved
    type Cluster interface {
    	cluster.Cluster
    
    	CanDeploy(Config) (Config, bool)
    }
    
    // Configurable is and object that has Config.
    type Configurable interface {
    	Config() Config
    
    	// ServiceName is the name of this service within the namespace.
    	ServiceName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/kube.go

    	for _, cc := range targetClusters {
    		// if cc is an external cluster, config cluster's secret should have already been
    		// placed on the cluster, or the given cluster is the same as the cluster in
    		// the target list. Only when c is not config cluster, cc is not external cluster
    		// and the given cluster is not the same as the target, c's secret goes onto cc.
    		if (!c.IsConfig() || !cc.IsExternalControlPlane()) && c.Name() != cc.Name() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/cluster.go

    	// IsPrimary returns true if this is a primary cluster, containing an instance
    	// of the Istio control plane.
    	IsPrimary() bool
    
    	// IsConfig returns true if this is a config cluster, used as the source of
    	// Istio config for one or more control planes.
    	IsConfig() bool
    
    	// IsRemote returns true if this is a remote cluster, which uses a control plane
    	// residing in another cluster.
    	IsRemote() bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    	endpointsliceconfig "k8s.io/kubernetes/pkg/controller/endpointslice/config"
    	endpointslicemirroringconfig "k8s.io/kubernetes/pkg/controller/endpointslicemirroring/config"
    	garbagecollectorconfig "k8s.io/kubernetes/pkg/controller/garbagecollector/config"
    	jobconfig "k8s.io/kubernetes/pkg/controller/job/config"
    	namespaceconfig "k8s.io/kubernetes/pkg/controller/namespace/config"
    	nodeipamconfig "k8s.io/kubernetes/pkg/controller/nodeipam/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/topology.go

    		PrimaryClusterName:      config.PrimaryClusterName,
    		ConfigClusterName:       config.ConfigClusterName,
    		ClusterProxyKubectlOnly: config.ProxyKubectlOnly,
    		AllClusters:             allClusters,
    		Index:                   len(allClusters),
    		ConfigMetadata:          config.Meta,
    	}
    }
    
    // Topology gives information about the relationship between clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. tests/integration/helm/upgrade/util.go

    			nsConfig.Get(helmtest.CniReleaseName), overrideValuesFile, helmtest.Timeout)
    		if err != nil {
    			ctx.Fatalf("failed to upgrade istio %s chart", helmtest.CniReleaseName)
    		}
    	}
    
    	if isAmbient {
    		// Upgrade ztunnel chart
    		err = h.UpgradeChart(helmtest.ZtunnelReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.ZtunnelChartsDir),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. tests/integration/helm/util.go

    }
    
    var DefaultNamespaceConfig = NewNamespaceConfig()
    
    func NewNamespaceConfig(config ...types.NamespacedName) NamespaceConfig {
    	result := make(nsConfig, len(config))
    	for _, c := range config {
    		result[c.Name] = c.Namespace
    	}
    	return result
    }
    
    type nsConfig map[string]string
    
    func (n nsConfig) Get(name string) string {
    	if ns, ok := n[name]; ok {
    		return ns
    	}
    	return IstioNamespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. tests/integration/ambient/waypoint_test.go

    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			nsConfig := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix: "waypoint",
    				Inject: false,
    				Labels: map[string]string{
    					constants.DataplaneModeLabel: "ambient",
    				},
    			})
    
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"apply",
    				"--namespace",
    				nsConfig.Name(),
    				"--wait",
    			})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top