Currently Squash support the following platformrs:
Future planes:
=> We are looking for community help to add support for more Platforms.
Platforms conform to interfaces used by squash server
type ServiceWatcher interface {
WatchService(context context.Context, servicename string) (<-chan Container, error)
}
type ContainerLocator interface {
Locate(context context.Context, containername string) (*Container, error)
}
Platforms conform to interface used by squash client
type Container2Pid interface {
GetPid(context context.Context, containername string) (int, error)
}