HelmReleaseMetaList returns a PartialObjectMetadataList typed as a HelmReleaseList.
()
| 30 | // HelmReleaseMetaList returns a PartialObjectMetadataList typed as a |
| 31 | // HelmReleaseList. |
| 32 | func HelmReleaseMetaList() *metav1.PartialObjectMetadataList { |
| 33 | list := &metav1.PartialObjectMetadataList{} |
| 34 | list.SetGroupVersionKind(HelmReleaseGVK.GroupVersion().WithKind("HelmReleaseList")) |
| 35 | return list |
| 36 | } |
| 37 | |
| 38 | // NamespaceMeta returns a PartialObjectMetadata typed as a Namespace. |
| 39 | func NamespaceMeta() *metav1.PartialObjectMetadata { |
no test coverage detected