Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for servicecidrs (0.18 sec)

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

    		// since right now it depends on the service-cidr flags and
    		// sets the default IPFamily that may not be coherent with the
    		// existing default ServiceCIDR
    		primaryClusterIPAllocator, err = ipallocator.NewMetaAllocator(
    			networkingv1alphaClient,
    			c.Informers.Networking().V1alpha1().ServiceCIDRs(),
    			c.Informers.Networking().V1alpha1().IPAddresses(),
    			netutils.IsIPv6CIDR(&serviceClusterIPRange),
    		)
    		if err != 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. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // ServiceCIDRList contains a list of ServiceCIDR objects.
    message ServiceCIDRList {
      // Standard object's metadata.
      // 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;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1alpha1/types.go

    // ServiceCIDRList contains a list of ServiceCIDR objects.
    type ServiceCIDRList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:30 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"status":   "status represents the current state of the ServiceCIDR. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status",
    }
    
    func (ServiceCIDR) SwaggerDoc() map[string]string {
    	return map_ServiceCIDR
    }
    
    var map_ServiceCIDRList = map[string]string{
    	"":         "ServiceCIDRList contains a list of ServiceCIDR objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    	serviceCIDR := &networkingv1alpha1.ServiceCIDR{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: networkingv1alpha1.ServiceCIDRSpec{},
    	}
    	serviceCIDR.Spec.CIDRs = append(serviceCIDR.Spec.CIDRs, primary)
    	if secondary != "" {
    		serviceCIDR.Spec.CIDRs = append(serviceCIDR.Spec.CIDRs, secondary)
    	}
    	return serviceCIDR
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top