# Functions
No description provided by the author
No description provided by the author
No description provided by the author
func RemovePodAnnotation(ctx context.Context, pod *corev1.Pod, name string) error { return update(ctx, pod, func() { if pod.Annotations == nil { return } delete(pod.Annotations, name) }, false, false) }.
No description provided by the author
StripPodUnusedFields is the transform function for shared pod informers, it removes unused fields from objects before they are stored in the cache to save memory.
No description provided by the author
No description provided by the author