Skip to content

Commit

Permalink
Merge branch 'main' of github.com:exoscale/exoscale-csi-driver into f…
Browse files Browse the repository at this point in the history
…ix-zone-integ
  • Loading branch information
pierre-emmanuelJ committed Jul 19, 2024
2 parents b73ab67 + 34078cc commit dd36ce0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/integ/cluster/teardown.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"fmt"
"log/slog"
"path/filepath"

"github.com/exoscale/exoscale/csi-driver/internal/integ/flags"

Expand Down Expand Up @@ -75,7 +76,7 @@ func (c *Cluster) tearDownCSI(ctx context.Context) error {
var finalErr error = nil

for _, manifestPath := range allManifests {
err := c.K8s.DeleteManifest(ctx, manifestDir+manifestPath)
err := c.K8s.DeleteManifest(ctx, filepath.Join(manifestDir, manifestPath))
if err != nil {
slog.Error("failed to delete manifest", "manifest", manifestPath, "err", err)

Expand Down

0 comments on commit dd36ce0

Please sign in to comment.