Files
velero/test/e2e/util/k8s/sc.go
T

13 lines
216 B
Go

package k8s
import (
"context"
"fmt"
)
func InstallStorageClass(ctx context.Context, yaml string) error {
fmt.Printf("Install storage class with %s.\n", yaml)
err := KubectlApplyByFile(ctx, yaml)
return err
}