Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ServerStorageVersion (0.21 sec)

  1. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion": {
            "description": "An API server instance reports the version it can decode and the version it encodes objects to when persisting objects in the backend.",
            "properties": {
              "apiServerID": {
                "description": "The ID of the reporting API server.",
                "type": "string"
              },
              "decodableVersions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    					Name:              "valid",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Status: apiserverinternal.StorageVersionStatus{
    					StorageVersions: []apiserverinternal.ServerStorageVersion{
    						{
    							APIServerID:       "1",
    							EncodingVersion:   "v1",
    							DecodableVersions: []string{"v1"},
    						},
    						{
    							APIServerID:       "2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	return []metav1.TableRow{row}, nil
    }
    
    func formatStorageVersions(storageVersions []apiserverinternal.ServerStorageVersion) string {
    	list := []string{}
    	max := 3
    	more := false
    	count := 0
    	for _, sv := range storageVersions {
    		if len(list) < max {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top