Files
podman/pkg/bindings/play/play.go
Ygal Blum 1c8196a9ac kube play: update the handling of PersistentVolumeClaim
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>
2022-11-08 11:08:50 +02:00

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)
}