mirror of
https://github.com/containers/podman.git
synced 2026-06-16 11:38:59 -04:00
Up - do not fail if volume already exists, use the existing one Down - allow the user to remove the volume by passing --force Add tests Update the documentation Signed-off-by: Ygal Blum <ygal.blum@gmail.com>
28 lines
806 B
Go
28 lines
806 B
Go
package play
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/containers/podman/v4/pkg/bindings/kube"
|
|
"github.com/containers/podman/v4/pkg/domain/entities"
|
|
)
|
|
|
|
type KubeOptions = kube.PlayOptions
|
|
|
|
func Kube(ctx context.Context, path string, options *KubeOptions) (*entities.PlayKubeReport, error) {
|
|
return kube.Play(ctx, path, options)
|
|
}
|
|
|
|
func KubeWithBody(ctx context.Context, body io.Reader, options *KubeOptions) (*entities.PlayKubeReport, error) {
|
|
return kube.PlayWithBody(ctx, body, options)
|
|
}
|
|
|
|
func Down(ctx context.Context, path string, options kube.DownOptions) (*entities.PlayKubeReport, error) {
|
|
return kube.Down(ctx, path, options)
|
|
}
|
|
|
|
func DownWithBody(ctx context.Context, body io.Reader, options kube.DownOptions) (*entities.PlayKubeReport, error) {
|
|
return kube.DownWithBody(ctx, body, options)
|
|
}
|