Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for servicecidrs (0.16 sec)

  1. pkg/proxy/nftables/proxier.go

    	// staleChains contains information about chains to be deleted later
    	staleChains map[string]time.Time
    
    	// serviceCIDRs is a comma separated list of ServiceCIDRs belonging to the IPFamily
    	// which proxier is operating on, can be directly consumed by knftables.
    	serviceCIDRs string
    
    	logger klog.Logger
    }
    
    // Proxier implements proxy.Provider
    var _ proxy.Provider = &Proxier{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    	ipv4CIDR := "10.1.0.0/16"
    	ipv6CIDR := "fd00:1:1::/64"
    
    	tests := []struct {
    		ccc      networking.ServiceCIDR
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		{
    			// Test name, IPv4 only.
    			ccc: networking.ServiceCIDR{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{ipv4CIDR},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printServiceCIDR(obj *networking.ServiceCIDR, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	cidrs := strings.Join(obj.Spec.CIDRs, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Added `optionalOldSelf` to `x-kubernetes-validations` to support ratcheting CRD schema constraints. ([#121034](https://github.com/kubernetes/kubernetes/pull/121034), [@alexzielenski](https://github.com/alexzielenski))
    - Added a new `ServiceCIDR` type that allows to dynamically configure the cluster range used to allocate `Service ClusterIPs` addresses. ([#116516](https://github.com/kubernetes/kubernetes/pull/116516), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top