Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for DecodableVersions (0.49 sec)

  1. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	// The API server can decode objects encoded in these versions.
    	// The encodingVersion must be included in the decodableVersions.
    	// +listType=set
    	DecodableVersions []string `json:"decodableVersions,omitempty" protobuf:"bytes,3,opt,name=decodableVersions"`
    
    	// The API server can serve these versions.
    	// DecodableVersions must include all ServedVersions.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/apis/apiserverinternal/types.go

    	// the backend (e.g., etcd).
    	EncodingVersion string
    
    	// The API server can decode objects encoded in these versions.
    	// The encodingVersion must be included in the decodableVersions.
    	DecodableVersions []string
    
    	// The API server can serve these versions.
    	// DecodableVersions must include all ServedVersions.
    	ServedVersions []string
    }
    
    // StorageVersionConditionType Indicates the storage version condition type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      // The API server can decode objects encoded in these versions.
      // The encodingVersion must be included in the decodableVersions.
      // +listType=set
      repeated string decodableVersions = 3;
    
      // The API server can serve these versions.
      // DecodableVersions must include all ServedVersions.
      // +listType=set
      repeated string servedVersions = 4;
    }
    
    // Storage version of a specific resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml

        message: messageValue
        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      storageVersions:
      - apiServerID: apiServerIDValue
        decodableVersions:
        - decodableVersionsValue
        encodingVersion: encodingVersionValue
        servedVersions:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.pb.go

    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	if len(m.DecodableVersions) > 0 {
    		for iNdEx := len(m.DecodableVersions) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.DecodableVersions[iNdEx])
    			copy(dAtA[i:], m.DecodableVersions[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.DecodableVersions[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	i -= len(m.EncodingVersion)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      // the backend (e.g., etcd).
      optional string encodingVersion = 2;
    
      // The API server can decode objects encoded in these versions.
      // The encodingVersion must be included in the decodableVersions.
      // +listType=set
      repeated string decodableVersions = 3;
    }
    
    // Storage version of a specific resource.
    message StorageVersion {
      // The name is <group>.<resource>.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		encodingGVK, err := getStorageVersionKind(versioner, storage, a.group.Typer)
    		if err != nil {
    			return nil, nil, err
    		}
    		decodableVersions := []schema.GroupVersion{}
    		if a.group.ConvertabilityChecker != nil {
    			decodableVersions = a.group.ConvertabilityChecker.VersionsForGroupKind(fqKindToRegister.GroupKind())
    		}
    
    		resourceInfo = &storageversion.ResourceInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    							APIServerID:       "1",
    							EncodingVersion:   "v1",
    							DecodableVersions: []string{"v1"},
    						},
    						{
    							APIServerID:       "2",
    							EncodingVersion:   "v1",
    							DecodableVersions: []string{"v1", "v2"},
    						},
    						{
    							APIServerID:       "3",
    							EncodingVersion:   "v2",
    							DecodableVersions: []string{"v2"},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

              "apiServerID": {
                "description": "The ID of the reporting API server.",
                "type": "string"
              },
              "decodableVersions": {
                "description": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
Back to top