mirror of
https://github.com/redhat-developer/odo.git
synced 2025-10-19 03:06:19 +03:00
* Panic if platform for Exec is not supported yet This will make the error more visible, instead of hiding it. * Use a consistent receiver name in 'pkg/kclient.Client#DeploymentWatcher' * Make 'pkg/logs/LogsClient' rely on the generic 'platform.Client' Co-authored-by: Philippe Martin <phmartin@redhat.com> * Make 'pkg/component#Log' function rely on the generic 'platform.Client' Co-authored-by: Philippe Martin <phmartin@redhat.com> * Make the 'execHandler' in 'pkg/component' rely on the generic 'platform.Client' Co-authored-by: Philippe Martin <phmartin@redhat.com> * Move 'matchOwnerReferenceWithResources' unit tests from 'pkg/logs' to 'pkg/kclient' Those tests are specific to the Kubernetes implementation. Co-authored-by: Philippe Martin <phmartin@redhat.com>
5 lines
256 B
Go
5 lines
256 B
Go
// Package platform provides a generic interface to abstract operations that can be performed anywhere.
|
|
// Its goal is to make odo not too tied to a specific platform like Kubernetes, but be able to work on other
|
|
// platforms like Podman.
|
|
package platform
|