Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 80 for servicecidrs (0.17 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip.go

    	if err == nil {
    		r.cidrQueue.Forget(key)
    		return
    	}
    
    	if r.cidrQueue.NumRequeues(key) < maxRetries {
    		klog.V(2).InfoS("Error syncing ServiceCIDR, retrying", "serviceCIDR", key, "err", err)
    		r.cidrQueue.AddRateLimited(key)
    		return
    	}
    
    	klog.Warningf("Dropping ServiceCIDR %q out of the queue: %v", key, err)
    	r.cidrQueue.Forget(key)
    	runtime.HandleError(err)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pkg/proxy/config/config.go

    // events on ServiceCIDR objects and call downstream event handlers.
    func (c *ServiceCIDRConfig) handleServiceCIDREvent(oldObj, newObj interface{}) {
    	var oldServiceCIDR, newServiceCIDR *networkingv1alpha1.ServiceCIDR
    	var ok bool
    
    	if oldObj != nil {
    		oldServiceCIDR, ok = oldObj.(*networkingv1alpha1.ServiceCIDR)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2beta1.json

                  ]
                },
                {
                  "resource": "servicecidrs",
                  "responseKind": {
                    "group": "",
                    "kind": "ServiceCIDR",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "servicecidr",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. api/discovery/aggregated_v2.json

                  ]
                },
                {
                  "resource": "servicecidrs",
                  "responseKind": {
                    "group": "",
                    "kind": "ServiceCIDR",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "servicecidr",
                  "subresources": [
                    {
                      "responseKind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier_test.go

    	// invocation into a Run() method.
    	nftablesFamily := knftables.IPv4Family
    	podCIDR := "10.0.0.0/8"
    	serviceCIDRs := "172.30.0.0/16"
    	if ipFamily == v1.IPv6Protocol {
    		nftablesFamily = knftables.IPv6Family
    		podCIDR = "fd00:10::/64"
    		serviceCIDRs = "fd00:10:96::/112"
    	}
    	detectLocal := proxyutil.NewDetectLocalByCIDR(podCIDR)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

            "x-kubernetes-group-version-kind": {
              "group": "networking.k8s.io",
              "kind": "ServiceCIDR",
              "version": "v1alpha1"
            }
          }
        },
        "/apis/networking.k8s.io/v1alpha1/servicecidrs/{name}": {
          "delete": {
            "description": "delete a ServiceCIDR",
            "operationId": "deleteNetworkingV1alpha1ServiceCIDR",
            "parameters": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  7. pkg/apis/networking/types.go

    // ServiceCIDRStatus describes the current state of the ServiceCIDR.
    type ServiceCIDRStatus struct {
    	// conditions holds an array of metav1.Condition that describe the state of the ServiceCIDR.
    	Conditions []metav1.Condition
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.27
    
    // ServiceCIDRList contains a list of ServiceCIDR objects.
    type ServiceCIDRList struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server.go

    		informers.WithTweakListOptions(func(options *metav1.ListOptions) {
    			options.LabelSelector = labelSelector.String()
    		}))
    
    	// Create configs (i.e. Watches for Services, EndpointSlices and ServiceCIDRs)
    	// Note: RegisterHandler() calls need to happen before creation of Sources because sources
    	// only notify on changes, and the initial update (on process start) may be lost if no handlers
    	// are registered yet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		eventsRule(),
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(features.MultiCIDRServiceAllocator) {
    		nodeProxierRules = append(nodeProxierRules, rbacv1helpers.NewRule("list", "watch").Groups(networkingGroup).Resources("servicecidrs").RuleOrDie())
    	}
    
    	nodeProxierRules = append(nodeProxierRules, rbacv1helpers.NewRule("list", "watch").Groups(discoveryGroup).Resources("endpointslices").RuleOrDie())
    	roles = append(roles, rbacv1.ClusterRole{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	proxier.mu.Unlock()
    
    	// Sync unconditionally - this is called once per lifetime.
    	proxier.syncProxyRules()
    }
    
    // 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) {}
    
    func (proxier *Proxier) cleanupAllPolicies() {
    	for svcName, svc := range proxier.svcPortMap {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top