spiegel_podman/pkg/bindings/play/play.go
Brent Baude 2cc3be7332
RUN-4539: Change podman module paths
The podman module paths are moving from github.com/containers/podman to
go.podman.io/podman.  This will help with future mobility.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2026-04-22 14:02:25 -05:00

27 lines
782 B
Go

package play
import (
"context"
"io"
"go.podman.io/podman/v6/pkg/bindings/kube"
"go.podman.io/podman/v6/pkg/domain/entities/types"
)
type KubeOptions = kube.PlayOptions
func Kube(ctx context.Context, path string, options *KubeOptions) (*types.PlayKubeReport, error) {
return kube.Play(ctx, path, options)
}
func KubeWithBody(ctx context.Context, body io.Reader, options *KubeOptions) (*types.PlayKubeReport, error) {
return kube.PlayWithBody(ctx, body, options)
}
func Down(ctx context.Context, path string, options kube.DownOptions) (*types.PlayKubeReport, error) {
return kube.Down(ctx, path, options)
}
func DownWithBody(ctx context.Context, body io.Reader, options kube.DownOptions) (*types.PlayKubeReport, error) {
return kube.DownWithBody(ctx, body, options)
}