mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
* fix(provider): add debug logging Add a bunch of debug logging calls * return a swarm service pointer * revert to service list with status true * change trace to debug * --no-verify
11 lines
270 B
Go
11 lines
270 B
Go
package kubernetes
|
|
|
|
import "context"
|
|
|
|
func (p *Provider) NotifyInstanceStopped(ctx context.Context, instance chan<- string) {
|
|
informer := p.watchDeployments(instance)
|
|
go informer.Run(ctx.Done())
|
|
informer = p.watchStatefulSets(instance)
|
|
go informer.Run(ctx.Done())
|
|
}
|