Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for ServiceCIDRs (0.27 sec)

  1. pkg/registry/core/rest/storage_core.go

    	} else {
    		p.startServiceClusterIPRepair = serviceipallocatorcontroller.NewRepairIPAddress(
    			c.Services.IPRepairInterval,
    			client,
    			c.Informers.Core().V1().Services(),
    			c.Informers.Networking().V1alpha1().ServiceCIDRs(),
    			c.Informers.Networking().V1alpha1().IPAddresses(),
    		).RunUntil
    	}
    
    	return p, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  2. 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)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    				rbacv1helpers.NewRule("get", "list", "watch", "patch", "update").Groups(networkingGroup).Resources("servicecidrs").RuleOrDie(),
    				rbacv1helpers.NewRule("patch", "update").Groups(networkingGroup).Resources("servicecidrs/finalizers").RuleOrDie(),
    				rbacv1helpers.NewRule("patch", "update").Groups(networkingGroup).Resources("servicecidrs/status").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of ServiceCIDRs.
      repeated ServiceCIDR items = 2;
    }
    
    // ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.
    message ServiceCIDRSpec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/default_storage_factory_builder.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. pkg/proxy/metaproxier/meta_proxier.go

    func (proxier *metaProxier) OnNodeSynced() {
    	proxier.ipv4Proxier.OnNodeSynced()
    	proxier.ipv6Proxier.OnNodeSynced()
    }
    
    // OnServiceCIDRsChanged is called whenever a change is observed
    // in any of the ServiceCIDRs, and provides complete list of service cidrs.
    func (proxier *metaProxier) OnServiceCIDRsChanged(cidrs []string) {
    	proxier.ipv4Proxier.OnServiceCIDRsChanged(cidrs)
    	proxier.ipv6Proxier.OnServiceCIDRsChanged(cidrs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1alpha1/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    	// items is the list of ServiceCIDRs.
    	Items []ServiceCIDR `json:"items" protobuf:"bytes,2,rep,name=items"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"items":    "items is the list of ServiceCIDRs.",
    }
    
    func (ServiceCIDRList) SwaggerDoc() map[string]string {
    	return map_ServiceCIDRList
    }
    
    var map_ServiceCIDRSpec = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/README.md

        routed away from there, there's nothing to do.)
    
      - We install a `reject` rule for ClusterIPs matching `@cluster-ips` set and a `drop`
        rule for ClusterIPs belonging to any of the ServiceCIDRs in `forward` and `output` hook, with a 
        higher (i.e. less urgent) priority than the DNAT chains making sure all valid
        traffic directed for ClusterIPs is already DNATed. Drop rule will only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/controller/repairip.go

    		cidrQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.DefaultTypedControllerRateLimiter[string](),
    			workqueue.TypedRateLimitingQueueConfig[string]{Name: "servicecidrs"},
    		),
    		svcQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.DefaultTypedControllerRateLimiter[string](),
    			workqueue.TypedRateLimitingQueueConfig[string]{Name: "services"},
    		),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top