Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for servicecidrs (0.31 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 490 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1alpha1.ServiceCIDR.pb

    Antonio Ojea <******@****.***> 1698606070 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 490 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1alpha1.ServiceCIDR.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 490 bytes
    - Viewed (0)
  4. pkg/controller/nodeipam/nolegacyprovider.go

    }
    
    func createLegacyIPAM(
    	ctx context.Context,
    	ic *Controller,
    	nodeInformer coreinformers.NodeInformer,
    	cloud cloudprovider.Interface,
    	kubeClient clientset.Interface,
    	clusterCIDRs []*net.IPNet,
    	serviceCIDR *net.IPNet,
    	nodeCIDRMaskSizes []int,
    ) (*fakeController, error) {
    	return nil, errors.New("Error trying to Init(): legacy cloud provider support disabled at build time")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. pkg/apis/networking/register.go

    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&NetworkPolicy{},
    		&NetworkPolicyList{},
    		&Ingress{},
    		&IngressList{},
    		&IngressClass{},
    		&IngressClassList{},
    		&IPAddress{},
    		&IPAddressList{},
    		&ServiceCIDR{},
    		&ServiceCIDRList{},
    	)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1alpha1/register.go

    )
    
    // Adds the list of known types to the given scheme.
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&IPAddress{},
    		&IPAddressList{},
    		&ServiceCIDR{},
    		&ServiceCIDRList{},
    	)
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/apis/networking/fuzzer/fuzzer.go

    			// length in bytes of the IP Family: IPv4: 4 bytes IPv6: 16 bytes
    			boolean := []bool{false, true}
    			is6 := boolean[c.Rand.Intn(2)]
    			ip := generateRandomIP(is6, c)
    			obj.Name = ip
    		},
    		func(obj *networking.ServiceCIDR, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			boolean := []bool{false, true}
    
    			is6 := boolean[c.Rand.Intn(2)]
    			primary := generateRandomCIDR(is6, c)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/constants/constants.go

    	InboundPorts              = "istio-inbound-ports"
    	LocalExcludePorts         = "istio-local-exclude-ports"
    	ExcludeInterfaces         = "istio-exclude-interfaces"
    	ServiceCidr               = "istio-service-cidr"
    	ServiceExcludeCidr        = "istio-service-exclude-cidr"
    	OutboundPorts             = "istio-outbound-ports"
    	LocalOutboundPortsExclude = "istio-local-outbound-ports-exclude"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.ExcludeInterfaces, "c",
    		"Comma separated list of NIC (optional). Neither inbound nor outbound traffic will be captured.",
    		&cfg.ExcludeInterfaces)
    
    	flag.BindEnv(fs, constants.ServiceCidr, "i",
    		"Comma separated list of IP ranges in CIDR form to redirect to envoy (optional). "+
    			"The wildcard character \"*\" can be used to redirect all outbound traffic. An empty list will disable all outbound.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top