Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for ServedVersions (0.26 sec)

  1. staging/src/k8s.io/apiserver/pkg/storageversion/updater_test.go

    		APIServerID:       "1",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    		ServedVersions:    []string{"v1"},
    	}
    	ssv2 = v1alpha1.ServerStorageVersion{
    		APIServerID:       "2",
    		EncodingVersion:   "v1",
    		DecodableVersions: []string{"v1", "v2"},
    		ServedVersions:    []string{"v1", "v2"},
    	}
    	// ssv3 has a different encoding version
    	ssv3 = v1alpha1.ServerStorageVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    	newSSV := v1alpha1.ServerStorageVersion{
    		APIServerID:       apiserverID,
    		EncodingVersion:   encodingVersion,
    		DecodableVersions: decodableVersions,
    		ServedVersions:    servedVersions,
    	}
    	foundSSV := false
    	for i, ssv := range sv.Status.StorageVersions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/apiserverinternal/v1alpha1/serverstorageversion.go

    	APIServerID       *string  `json:"apiServerID,omitempty"`
    	EncodingVersion   *string  `json:"encodingVersion,omitempty"`
    	DecodableVersions []string `json:"decodableVersions,omitempty"`
    	ServedVersions    []string `json:"servedVersions,omitempty"`
    }
    
    // ServerStorageVersionApplyConfiguration constructs an declarative configuration of the ServerStorageVersion type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types.go

    	// The API server can serve these versions.
    	// DecodableVersions must include all ServedVersions.
    	// +listType=set
    	ServedVersions []string `json:"servedVersions,omitempty" protobuf:"bytes,4,opt,name=servedVersions"`
    }
    
    type StorageVersionConditionType string
    
    const (
    	// Indicates that encoding storage versions reported by all servers are equal.
    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. pkg/apis/apiserverinternal/types.go

    	// 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
    type StorageVersionConditionType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apiserverinternal/v1alpha1/zz_generated.deepcopy.go

    	*out = *in
    	if in.DecodableVersions != nil {
    		in, out := &in.DecodableVersions, &out.DecodableVersions
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ServedVersions != nil {
    		in, out := &in.ServedVersions, &out.ServedVersions
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerStorageVersion.
    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. staging/src/k8s.io/api/testdata/v1.30.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml

        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)
  8. staging/src/k8s.io/api/testdata/v1.29.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. pkg/apis/apiserverinternal/zz_generated.deepcopy.go

    	*out = *in
    	if in.DecodableVersions != nil {
    		in, out := &in.DecodableVersions, &out.DecodableVersions
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ServedVersions != nil {
    		in, out := &in.ServedVersions, &out.ServedVersions
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerStorageVersion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      // +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.
    message StorageVersion {
      // The name is <group>.<resource>.
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top