Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for NetworkName (0.17 sec)

  1. pkg/test/framework/components/echo/match/matchers.go

    		return c.Name() == i.Config().Cluster.Name()
    	}
    }
    
    // Network matches instances deployed in the given network.
    func Network(n string) Matcher {
    	return func(i echo.Instance) bool {
    		return i.Config().Cluster.NetworkName() == n
    	}
    }
    
    // VM matches instances with DeployAsVM
    var VM Matcher = func(i echo.Instance) bool {
    	return i.Config().IsVM()
    }
    
    // NotVM is matches against instances that are NOT VMs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/types.go

    }
    
    // KubeProxyWinkernelConfiguration contains Windows/HNS settings for
    // the Kubernetes proxy server.
    type KubeProxyWinkernelConfiguration struct {
    	// networkName is the name of the network kube-proxy will use
    	// to create endpoints and policies
    	NetworkName string
    	// sourceVip is the IP address of the source VIP endpoint used for
    	// NAT when loadbalancing
    	SourceVip string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    			"values.global.variant=" + ctx.Settings().Image.Variant,
    		},
    	}
    
    	if ctx.Environment().IsMultiNetwork() && c.NetworkName() != "" {
    		args.AppendSet("values.global.meshID", meshID)
    		args.AppendSet("values.global.network", c.NetworkName())
    	}
    
    	// Include all user-specified values and configuration options.
    	if cfg.EnableCNI {
    		args.AppendSet("components.cni.enabled", "true")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. tests/integration/security/util/reachability/context.go

    						destinationSets := []echo.Instances{
    							A,
    							B,
    							// only hit same network headless services
    							match.Network(from.Config().Cluster.NetworkName()).GetMatches(Headless),
    							// only hit same cluster multiversion services
    							match.Cluster(from.Config().Cluster).GetMatches(Multiversion),
    							// only hit same cluster naked services
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/reconciler.go

    }
    
    // Reconcile reconciles the associated resources.
    func (h *HelmReconciler) Reconcile() (*v1alpha1.InstallStatus, error) {
    	if err := util.CreateNamespace(h.kubeClient.Kube(), istioV1Alpha1.Namespace(h.iop.Spec), h.networkName(), h.opts.DryRun); err != nil {
    		return nil, err
    	}
    	manifestMap, err := h.RenderCharts()
    	if err != nil {
    		return nil, err
    	}
    
    	err = h.analyzeWebhooks(manifestMap[name.PilotComponentName])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. pkg/test/framework/components/environment/kube/flags.go

    		"", "Specifies the mapping for each cluster to it's network name, for multi-network scenarios. The value is a "+
    			"comma-separated list of the form <clusterIndex>:<networkName>, where the indexes refer to the order in which "+
    			"a given cluster appears in the 'istio.test.kube.config' flag. If not specified, network name will be left unset")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/deployment.go

    			d.cfg.Service,
    			err)
    	}
    }
    
    func (d *deployment) workloadEntryYAML(w *workload) string {
    	name := w.pod.Name
    	podIP := w.pod.Status.PodIP
    	sa := serviceAccount(d.cfg)
    	network := d.cfg.Cluster.NetworkName()
    	service := d.cfg.Service
    	version := w.pod.Labels[constants.TestVMVersionLabel]
    
    	return fmt.Sprintf(`
    apiVersion: networking.istio.io/v1alpha3
    kind: WorkloadEntry
    metadata:
      name: %s
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. tests/integration/security/reachability_test.go

    											}
    										} else if c.expectCrossCluster(from, opts) {
    											// Expect to stay in the same network as the source pod.
    											expectedClusters := to.Clusters().ForNetworks(from.Config().Cluster.NetworkName())
    											if !check.IsDNSCaptureEnabled(t) && opts.To.Config().Headless {
    												opts.Check = check.And(opts.Check, check.ReachedSourceCluster(t.Clusters()))
    											} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    			}
    			Never := func(echo.Instance, echo.CallOptions) bool {
    				return false
    			}
    			SameNetwork := func(from echo.Instance, to echo.Target) echo.Instances {
    				return match.Network(from.Config().Cluster.NetworkName()).GetMatches(to.Instances())
    			}
    			SupportsHBone := func(from echo.Instance, opts echo.CallOptions) bool {
    				if !from.Config().IsUncaptured() && !opts.To.Config().IsUncaptured() {
    					return true
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    							toClusters := to.Clusters()
    							// don't check headless since lb is unpredictable
    							headlessTarget := match.Headless.Any(to)
    							if !headlessTarget && len(toClusters.ByNetwork()[fromCluster.NetworkName()]) > 1 {
    								// Conditionally check reached clusters to work around connection load balancing issues
    								// See https://github.com/istio/istio/issues/32208 for details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top