package testapi
import "k8s.io/kubernetes/pkg/api/testapi"
Package testapi provides a helper for retrieving the KUBE_TEST_API environment variable.
TODO(lavalamp): this package is a huge disaster at the moment. I intend to refactor. All code currently using this package should change: 1. Declare your own api.Registry.APIGroupRegistrationManager in your own test code. 2. Import the relevant install packages. 3. Register the types you need, from the announced.APIGroupAnnouncementManager.
Index ¶
- func StorageMediaType() string
- type TestGroup
- func (g TestGroup) Codec() runtime.Codec
- func (g TestGroup) ContentConfig() (string, *schema.GroupVersion, runtime.Codec)
- func (g TestGroup) ExternalTypes() map[string]reflect.Type
- func (g TestGroup) GroupVersion() *schema.GroupVersion
- func (g TestGroup) InternalGroupVersion() schema.GroupVersion
- func (g TestGroup) InternalTypes() map[string]reflect.Type
- func (g TestGroup) NegotiatedSerializer() runtime.NegotiatedSerializer
- func (g TestGroup) ResourcePath(resource, namespace, name string) string
- func (g TestGroup) ResourcePathWithPrefix(prefix, resource, namespace, name string) string
- func (g TestGroup) SelfLink(resource, name string) string
- func (g TestGroup) StorageCodec() runtime.Codec
- func (g TestGroup) SubResourcePath(resource, namespace, name, sub string) string
Functions ¶
func StorageMediaType ¶
func StorageMediaType() string
Types ¶
type TestGroup ¶
type TestGroup struct {
// contains filtered or unexported fields
}
var ( Groups = make(map[string]TestGroup) Default TestGroup Authorization TestGroup Autoscaling TestGroup Batch TestGroup Extensions TestGroup Events TestGroup Apps TestGroup Policy TestGroup Rbac TestGroup Certificates TestGroup Scheduling TestGroup Settings TestGroup Storage TestGroup ImagePolicy TestGroup Admission TestGroup Networking TestGroup )
func (TestGroup) Codec ¶
Codec returns the codec for the API version to test against, as set by the KUBE_TEST_API_TYPE env var.
func (TestGroup) ContentConfig ¶
func (TestGroup) ExternalTypes ¶
ExternalTypes returns a map of external API types' kind names to their Go types.
func (TestGroup) GroupVersion ¶
func (g TestGroup) GroupVersion() *schema.GroupVersion
func (TestGroup) InternalGroupVersion ¶
func (g TestGroup) InternalGroupVersion() schema.GroupVersion
InternalGroupVersion returns the group,version used to identify the internal types for this API
func (TestGroup) InternalTypes ¶
InternalTypes returns a map of internal API types' kind names to their Go types.
func (TestGroup) NegotiatedSerializer ¶
func (g TestGroup) NegotiatedSerializer() runtime.NegotiatedSerializer
NegotiatedSerializer returns the negotiated serializer for the server.
func (TestGroup) ResourcePath ¶
ResourcePath returns the appropriate path for the given resource, namespace and name. For example, this is of the form: /api/v1/namespaces/foo/pods/pod0 for v1.
func (TestGroup) ResourcePathWithPrefix ¶
ResourcePathWithPrefix returns the appropriate path for the given prefix (watch, proxy, redirect, etc), resource, namespace and name. For ex, this is of the form: /api/v1/watch/namespaces/foo/pods/pod0 for v1.
func (TestGroup) SelfLink ¶
SelfLink returns a self link that will appear to be for the version Version(). 'resource' should be the resource path, e.g. "pods" for the Pod type. 'name' should be empty for lists.
func (TestGroup) StorageCodec ¶
StorageCodec returns the codec for the API version to store in etcd, as set by the KUBE_TEST_API_STORAGE_TYPE env var.
func (TestGroup) SubResourcePath ¶
SubResourcePath returns the appropriate path for the given resource, namespace, name and subresource.
Source Files ¶
testapi.go
- Version
- v1.11.0-alpha.2
- Published
- May 2, 2018
- Platform
- js/wasm
- Imports
- 45 packages
- Last checked
- 12 minutes ago –
Tools for package owners.