Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for ServiceCIDRSpec (0.33 sec)

  1. pkg/controlplane/controller/defaultservicecidr/default_servicecidr_controller.go

    	serviceCIDR = &networkingapiv1alpha1.ServiceCIDR{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: DefaultServiceCIDRName,
    		},
    		Spec: networkingapiv1alpha1.ServiceCIDRSpec{
    			CIDRs: c.cidrs,
    		},
    	}
    	serviceCIDR, err = c.client.NetworkingV1alpha1().ServiceCIDRs().Create(context.Background(), serviceCIDR, metav1.CreateOptions{})
    	if err != nil && !apierrors.IsAlreadyExists(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. pkg/apis/networking/types.go

    	// +optional
    	Spec ServiceCIDRSpec
    	// 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
    	// +optional
    	Status ServiceCIDRStatus
    }
    
    type ServiceCIDRSpec 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)
  3. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    func newServiceCIDR(name, cidr string) *networkingv1alpha1.ServiceCIDR {
    	return &networkingv1alpha1.ServiceCIDR{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: networkingv1alpha1.ServiceCIDRSpec{
    			CIDRs: []string{cidr},
    		},
    		Status: networkingv1alpha1.ServiceCIDRStatus{
    			Conditions: []metav1.Condition{
    				{
    					Type:   string(networkingv1alpha1.ServiceCIDRConditionReady),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    	serviceCIDR := &networkingapiv1alpha1.ServiceCIDR{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: networkingapiv1alpha1.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: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    func newServiceCIDR(name, primary, secondary string) *networkingv1alpha1.ServiceCIDR {
    	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)
  6. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/api/core/v1,VolumeSource,CephFS
    API rule violation: names_match,k8s.io/api/core/v1,VolumeSource,StorageOS
    API rule violation: names_match,k8s.io/api/networking/v1alpha1,ServiceCIDRSpec,CIDRs
    API rule violation: names_match,k8s.io/api/resource/v1alpha2,NamedResourcesAttributeValue,BoolValue
    API rule violation: names_match,k8s.io/api/resource/v1alpha2,NamedResourcesAttributeValue,IntSliceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    		Items: []networking.ServiceCIDR{
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "ccc1"},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{"10.1.0.0/16", "fd00:1:1::/64"},
    				},
    			},
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "ccc2"},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{"10.2.0.0/16", "fd00:2:1::/64"},
    				},
    			},
    		},
    	}
    
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

                "group": "networking.k8s.io",
                "kind": "ServiceCIDRList",
                "version": "v1alpha1"
              }
            ]
          },
          "io.k8s.api.networking.v1alpha1.ServiceCIDRSpec": {
            "description": "ServiceCIDRSpec define the CIDRs the user wants to use for allocating ClusterIPs for Services.",
            "properties": {
              "cidrs": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "CIDRs", Type: "string", Description: networkingv1alpha1.ServiceCIDRSpec{}.SwaggerDoc()["cidrs"]},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    
    	_ = h.TableHandler(serviceCIDRColumnDefinitions, printServiceCIDR)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/networking/v1alpha1.ServiceCIDRList":                                                        schema_k8sio_api_networking_v1alpha1_ServiceCIDRList(ref),
    		"k8s.io/api/networking/v1alpha1.ServiceCIDRSpec":                                                        schema_k8sio_api_networking_v1alpha1_ServiceCIDRSpec(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top