type DaemonSetListerExpansion … type DaemonSetNamespaceListerExpansion … // GetPodDaemonSets returns a list of DaemonSets that potentially match a pod. // Only the one specified in the Pod's ControllerRef will actually manage it. // Returns an error only if no matching DaemonSets are found. func (s *daemonSetLister) GetPodDaemonSets(pod *v1.Pod) ([]*apps.DaemonSet, error) { … } // GetHistoryDaemonSets returns a list of DaemonSets that potentially // match a ControllerRevision. Only the one specified in the ControllerRevision's ControllerRef // will actually manage it. // Returns an error only if no matching DaemonSets are found. func (s *daemonSetLister) GetHistoryDaemonSets(history *apps.ControllerRevision) ([]*apps.DaemonSet, error) { … }