Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for NetworkName (0.15 sec)

  1. pkg/proxy/winkernel/hns.go

    	getNetworkByName(name string) (*hnsNetworkInfo, error)
    	getAllEndpointsByNetwork(networkName string) (map[string]*endpointInfo, error)
    	getEndpointByID(id string) (*endpointInfo, error)
    	getEndpointByIpAddress(ip string, networkName string) (*endpointInfo, error)
    	getEndpointByName(id string) (*endpointInfo, error)
    	createEndpoint(ep *endpointInfo, networkName string) (*endpointInfo, error)
    	deleteEndpoint(hnsID string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 21:21:12 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/check/checkers.go

    		return nil
    	}
    
    	return checkReachedClusters(result, allClusters, cluster.ClustersByNetwork{
    		// Use the source network of the caller.
    		fromCluster.NetworkName(): cluster.Clusters{fromCluster},
    	})
    }
    
    // checkReachedSourceNetworkOnly verifies that the only network that was reached is the network where
    // the source workload resides.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. pkg/proxy/apis/config/v1alpha1/zz_generated.conversion.go

    func autoConvert_v1alpha1_KubeProxyWinkernelConfiguration_To_config_KubeProxyWinkernelConfiguration(in *v1alpha1.KubeProxyWinkernelConfiguration, out *config.KubeProxyWinkernelConfiguration, s conversion.Scope) error {
    	out.NetworkName = in.NetworkName
    	out.SourceVip = in.SourceVip
    	out.EnableDSR = in.EnableDSR
    	out.RootHnsEndpointName = in.RootHnsEndpointName
    	out.ForwardHealthCheckVip = in.ForwardHealthCheckVip
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:33:53 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
Back to top