Files
velero/test/e2e/util/k8s/sc.go
2023-02-24 09:54:55 +00:00

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
}