Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for ServerStorageVersion (0.36 sec)

  1. pkg/controller/storageversiongc/gc_controller_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name: "k8s.test.resources",
    		},
    		Status: apiserverinternalv1alpha1.StorageVersionStatus{
    			StorageVersions: []apiserverinternalv1alpha1.ServerStorageVersion{
    				{
    					APIServerID:       "kube-apiserver-1",
    					EncodingVersion:   "v1",
    					DecodableVersions: []string{"v1"},
    				},
    				{
    					APIServerID:       "kube-apiserver-2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:43 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

    option go_package = "k8s.io/api/apiserverinternal/v1alpha1";
    
    // An API server instance reports the version it can decode and the version it
    // encodes objects to when persisting objects in the backend.
    message ServerStorageVersion {
      // The ID of the reporting API server.
      optional string apiServerID = 1;
    
      // The API server encodes the object to this version when persisting it in
      // the backend (e.g., etcd).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. pkg/controller/storageversiongc/gc_controller.go

    	if err != nil {
    		return err
    	}
    
    	var errors []error
    	for _, sv := range storageVersionList.Items {
    		var serverStorageVersions []apiserverinternalv1alpha1.ServerStorageVersion
    		hasStaleRecord := false
    		for _, ssv := range sv.Status.StorageVersions {
    			if ssv.APIServerID == name {
    				hasStaleRecord = true
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    type StorageVersionStatus struct {
    	// The reported versions per API server instance.
    	// +optional
    	// +listType=map
    	// +listMapKey=apiServerID
    	StorageVersions []ServerStorageVersion `json:"storageVersions,omitempty" protobuf:"bytes,1,opt,name=storageVersions"`
    	// If all API server instances agree on the same encoding storage version,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

    option go_package = "k8s.io/api/apiserverinternal/v1alpha1";
    
    // An API server instance reports the version it can decode and the version it
    // encodes objects to when persisting objects in the backend.
    message ServerStorageVersion {
      // The ID of the reporting API server.
      optional string apiServerID = 1;
    
      // The API server encodes the object to this version when persisting it in
      // the backend (e.g., etcd).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. pkg/apis/apiserverinternal/validation/validation.go

    		allErrs = append(allErrs, err)
    	}
    	allErrs = append(allErrs, validateStorageVersionCondition(ss.Conditions, fldPath)...)
    	return allErrs
    }
    
    func validateServerStorageVersion(ssv apiserverinternal.ServerStorageVersion, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for _, msg := range apimachineryvalidation.NameIsDNSSubdomain(ssv.APIServerID, false) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types_swagger_doc_generated.go

    	"servedVersions":    "The API server can serve these versions. DecodableVersions must include all ServedVersions.",
    }
    
    func (ServerStorageVersion) SwaggerDoc() map[string]string {
    	return map_ServerStorageVersion
    }
    
    var map_StorageVersion = map[string]string{
    	"":         "Storage version of a specific resource.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    func localUpdateStorageVersion(sv *v1alpha1.StorageVersion, apiserverID, encodingVersion string, decodableVersions []string, servedVersions []string) *v1alpha1.StorageVersion {
    	newSSV := v1alpha1.ServerStorageVersion{
    		APIServerID:       apiserverID,
    		EncodingVersion:   encodingVersion,
    		DecodableVersions: decodableVersions,
    		ServedVersions:    servedVersions,
    	}
    	foundSSV := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top