Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NetworkName (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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