Documentation ¶
Index ¶
- Constants
- func DispatchServiceChange(st store.RStore, service *v1.Service, mn model.ManifestName, ip k8s.NodeIP) error
- func ShouldLogEvent(e *v1.Event) bool
- type EventWatchManager
- type ExtraSelector
- type PodChangeAction
- type PodDeleteAction
- type PodWatcher
- type ServiceChangeAction
- type ServiceWatcher
Constants ¶
View Source
const ImagePulledReason = "Pulled"
View Source
const ImagePullingReason = "Pulling"
Variables ¶
This section is empty.
Functions ¶
func DispatchServiceChange ¶
func ShouldLogEvent ¶ added in v0.16.1
Types ¶
type EventWatchManager ¶
type EventWatchManager struct {
// contains filtered or unexported fields
}
TODO(nick): Right now, the EventWatchManager, PodWatcher, and ServiceWatcher all look very similar, with a few subtle differences (particularly in how we decide whether two objects are related, and how we index those relationships).
We're probably missing some abstractions here.
TODO(nick): We should also add garbage collection and/or handle Delete events from the kubernetes informer properly.
func NewEventWatchManager ¶
func NewEventWatchManager(kClient k8s.Client, ownerFetcher k8s.OwnerFetcher, cfgNS k8s.Namespace) *EventWatchManager
func (*EventWatchManager) OnChange ¶
func (m *EventWatchManager) OnChange(ctx context.Context, st store.RStore, _ store.ChangeSummary)
type ExtraSelector ¶ added in v0.17.7
type ExtraSelector struct {
// contains filtered or unexported fields
}
type PodChangeAction ¶
type PodChangeAction struct { Pod *v1alpha1.Pod ManifestName model.ManifestName // The UID that we matched against to associate this pod with Tilt. // Might be the Pod UID itself, or the UID of an ancestor. MatchedAncestorUID types.UID }
func NewPodChangeAction ¶
func NewPodChangeAction(pod *v1alpha1.Pod, mn model.ManifestName, matchedAncestorUID types.UID) PodChangeAction
func (PodChangeAction) Action ¶
func (PodChangeAction) Action()
func (PodChangeAction) Summarize ¶ added in v0.19.1
func (a PodChangeAction) Summarize(s *store.ChangeSummary)
type PodDeleteAction ¶ added in v0.14.0
func NewPodDeleteAction ¶ added in v0.14.0
func NewPodDeleteAction(podID k8s.PodID, namespace k8s.Namespace) PodDeleteAction
func (PodDeleteAction) Action ¶ added in v0.14.0
func (PodDeleteAction) Action()
func (PodDeleteAction) Summarize ¶ added in v0.19.1
func (a PodDeleteAction) Summarize(s *store.ChangeSummary)
type PodWatcher ¶
type PodWatcher struct {
// contains filtered or unexported fields
}
func NewPodWatcher ¶
func NewPodWatcher(kCli k8s.Client, ownerFetcher k8s.OwnerFetcher, cfgNS k8s.Namespace) *PodWatcher
func (*PodWatcher) OnChange ¶
func (w *PodWatcher) OnChange(ctx context.Context, st store.RStore, _ store.ChangeSummary)
type ServiceChangeAction ¶
type ServiceChangeAction struct { Service *v1.Service ManifestName model.ManifestName URL *url.URL }
func NewServiceChangeAction ¶
func NewServiceChangeAction(service *v1.Service, mn model.ManifestName, url *url.URL) ServiceChangeAction
func (ServiceChangeAction) Action ¶
func (ServiceChangeAction) Action()
type ServiceWatcher ¶
type ServiceWatcher struct {
// contains filtered or unexported fields
}
func NewServiceWatcher ¶
func NewServiceWatcher(kCli k8s.Client, ownerFetcher k8s.OwnerFetcher, cfgNS k8s.Namespace) *ServiceWatcher
func (*ServiceWatcher) OnChange ¶
func (w *ServiceWatcher) OnChange(ctx context.Context, st store.RStore, _ store.ChangeSummary)
Click to show internal directories.
Click to hide internal directories.