Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for servicecidrs (0.26 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/proxy/iptables/proxier.go

    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnNodeSynced() {
    }
    
    // OnServiceCIDRsChanged is called whenever a change is observed
    // in any of the ServiceCIDRs, and provides complete list of service cidrs.
    func (proxier *Proxier) OnServiceCIDRsChanged(_ []string) {}
    
    // portProtoHash takes the ServicePortName and protocol for a service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnNodeSynced() {
    }
    
    // OnServiceCIDRsChanged is called whenever a change is observed
    // in any of the ServiceCIDRs, and provides complete list of service cidrs.
    func (proxier *Proxier) OnServiceCIDRsChanged(_ []string) {}
    
    // This is where all of the ipvs calls happen.
    func (proxier *Proxier) syncProxyRules() {
    	proxier.mu.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      #   POD_CIDR: the pod CIDR assigned to this node.
      #   POD_GATEWAY: the gateway IP.
      #   MGMT_IP: the IP address assigned to the node's primary network interface
      #     (i.e. the internal IP of the GCE VM).
      #   SERVICE_CIDR: the CIDR used for kubernetes services.
      #   DNS_SERVER_IP: the cluster's DNS server IP address.
      #   DNS_DOMAIN: the cluster's DNS domain, e.g. "cluster.local".
      #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    			expectedErrorSubString: "--service-cluster-ip-range can not contain more than two entries",
    			options: &NodeIPAMControllerOptions{
    				&nodeipamconfig.NodeIPAMControllerConfiguration{
    					ServiceCIDR:          "10.0.0.0/16,244.0.0.0/16,3000::/108",
    					NodeCIDRMaskSize:     48,
    					NodeCIDRMaskSizeIPv4: 48,
    					NodeCIDRMaskSizeIPv6: 108,
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top