Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ServerStorageVersion (0.5 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apiserverinternal/v1alpha1/serverstorageversion.go

    	ServedVersions    []string `json:"servedVersions,omitempty"`
    }
    
    // ServerStorageVersionApplyConfiguration constructs an declarative configuration of the ServerStorageVersion type for use with
    // apply.
    func ServerStorageVersion() *ServerStorageVersionApplyConfiguration {
    	return &ServerStorageVersionApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storageversion/updater_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    var (
    	v1   = "v1"
    	v2   = "v2"
    	ssv1 = v1alpha1.ServerStorageVersion{
    		APIServerID:       "1",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    		ServedVersions:    []string{"v1"},
    	}
    	ssv2 = v1alpha1.ServerStorageVersion{
    		APIServerID:       "2",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apiserverinternal/v1alpha1/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerStorageVersion.
    func (in *ServerStorageVersion) DeepCopy() *ServerStorageVersion {
    	if in == nil {
    		return nil
    	}
    	out := new(ServerStorageVersion)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. pkg/registry/apiserverinternal/storageversion/strategy_test.go

    	}
    }
    
    func validStorageVersion() *apiserverinternal.StorageVersion {
    	ssv1 := apiserverinternal.ServerStorageVersion{
    		APIServerID:       "1",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    	}
    	ssv2 := apiserverinternal.ServerStorageVersion{
    		APIServerID:       "2",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 06 07:26:18 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. pkg/registry/apiserverinternal/storageversion/storage/storage_test.go

    	return fmt.Sprintf("core.pods%d", i)
    }
    
    func validStorageVersion() *apiserverinternal.StorageVersion {
    	ssv1 := apiserverinternal.ServerStorageVersion{
    		APIServerID:       "1",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    	}
    	ssv2 := apiserverinternal.ServerStorageVersion{
    		APIServerID:       "2",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 06 07:26:18 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  6. pkg/apis/apiserverinternal/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerStorageVersion.
    func (in *ServerStorageVersion) DeepCopy() *ServerStorageVersion {
    	if in == nil {
    		return nil
    	}
    	out := new(ServerStorageVersion)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. pkg/apis/apiserverinternal/types.go

    	// The latest available observations of the storageVersion's state.
    	// +optional
    	Conditions []StorageVersionCondition
    }
    
    // ServerStorageVersion An API server instance reports the version it can decode and the version it
    // encodes objects to when persisting objects in the backend.
    type ServerStorageVersion struct {
    	// The ID of the reporting API server.
    	APIServerID string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top