Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ServerStorageVersion (0.37 sec)

  1. 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)
  2. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.pb.go

    func (m *ServerStorageVersion) Reset()      { *m = ServerStorageVersion{} }
    func (*ServerStorageVersion) ProtoMessage() {}
    func (*ServerStorageVersion) Descriptor() ([]byte, []int) {
    	return fileDescriptor_126bcbf538b54729, []int{0}
    }
    func (m *ServerStorageVersion) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ServerStorageVersion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/apidiscovery/v2beta1.APIVersionDiscovery":                                                   schema_k8sio_api_apidiscovery_v2beta1_APIVersionDiscovery(ref),
    		"k8s.io/api/apiserverinternal/v1alpha1.ServerStorageVersion":                                            schema_k8sio_api_apiserverinternal_v1alpha1_ServerStorageVersion(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top