Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for APIServiceSpec (0.49 sec)

  1. pkg/controlplane/controller/crdregistration/crdregistration_controller_test.go

    			},
    			version: schema.GroupVersion{Group: "group.com", Version: "v1"},
    
    			expectedAdded: []*apiregistration.APIService{
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: "v1.group.com"},
    					Spec: apiregistration.APIServiceSpec{
    						Group:                "group.com",
    						Version:              "v1",
    						GroupPriorityMinimum: 1000,
    						VersionPriority:      100,
    					},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 02 17:48:26 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  2. pkg/controlplane/controller/crdregistration/crdregistration_controller.go

    				continue
    			}
    
    			c.apiServiceRegistration.AddAPIServiceToSync(&v1.APIService{
    				ObjectMeta: metav1.ObjectMeta{Name: apiServiceName},
    				Spec: v1.APIServiceSpec{
    					Group:                groupVersion.Group,
    					Version:              groupVersion.Version,
    					GroupPriorityMinimum: 1000, // CRDs should have relatively low priority
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/aggregator.go

    		klog.Infof("Skipping APIService creation for %v", gv)
    		return nil
    	}
    	return &v1.APIService{
    		ObjectMeta: metav1.ObjectMeta{Name: gv.Version + "." + gv.Group},
    		Spec: v1.APIServiceSpec{
    			Group:                gv.Group,
    			Version:              gv.Version,
    			GroupPriorityMinimum: apiServicePriority.Group,
    			VersionPriority:      apiServicePriority.Version,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "kind": "APIServiceList",
                "version": "v1"
              }
            ]
          },
          "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
            "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
            "properties": {
              "caBundle": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/kube-aggregator/pkg/apis/apiregistration/v1.APIServiceList":                                     schema_pkg_apis_apiregistration_v1_APIServiceList(ref),
    		"k8s.io/kube-aggregator/pkg/apis/apiregistration/v1.APIServiceSpec":                                     schema_pkg_apis_apiregistration_v1_APIServiceSpec(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "kind": "APIServiceList",
              "version": "v1"
            }
          ]
        },
        "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
          "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
          "properties": {
            "caBundle": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

              "kind": "APIServiceList",
              "version": "v1"
            }
          ]
        },
        "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
          "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
          "properties": {
            "caBundle": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger.json

              "kind": "APIServiceList",
              "version": "v1"
            }
          ]
        },
        "io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec": {
          "description": "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.",
          "properties": {
            "caBundle": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 4.5M bytes
    - Viewed (0)
Back to top