Skip to content

Commit

Permalink
Typo fixes "manifests" (#1409)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianZaccaria authored Nov 29, 2024
1 parent 8fb9bd7 commit 0b4b1f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/kueue/kueue.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (k *Kueue) ReconcileComponent(ctx context.Context, cli client.Client,
}
// Deploy Kueue Operator
if err := deploy.DeployManifestsFromPath(ctx, cli, owner, Path, dscispec.ApplicationsNamespace, ComponentName, enabled); err != nil {
return fmt.Errorf("failed to apply manifetss %s: %w", Path, err)
return fmt.Errorf("failed to apply manifests %s: %w", Path, err)
}
l.Info("apply manifests done")

Expand Down
2 changes: 1 addition & 1 deletion components/ray/ray.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (r *Ray) ReconcileComponent(ctx context.Context, cli client.Client,
}
// Deploy Ray Operator
if err := deploy.DeployManifestsFromPath(ctx, cli, owner, RayPath, dscispec.ApplicationsNamespace, ComponentName, enabled); err != nil {
return fmt.Errorf("failed to apply manifets from %s : %w", RayPath, err)
return fmt.Errorf("failed to apply manifest from %s : %w", RayPath, err)
}
l.Info("apply manifests done")

Expand Down
4 changes: 2 additions & 2 deletions components/workbenches/workbenches.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@ func (w *Workbenches) ReconcileComponent(ctx context.Context, cli client.Client,
notebookControllerPath,
dscispec.ApplicationsNamespace,
ComponentName, enabled); err != nil {
return fmt.Errorf("failed to apply manifetss %s: %w", notebookControllerPath, err)
return fmt.Errorf("failed to apply manifests %s: %w", notebookControllerPath, err)
}
l.WithValues("Path", notebookControllerPath).Info("apply manifests done notebook controller done")

if err := deploy.DeployManifestsFromPath(ctx, cli, owner,
kfnotebookControllerPath,
dscispec.ApplicationsNamespace,
ComponentName, enabled); err != nil {
return fmt.Errorf("failed to apply manifetss %s: %w", kfnotebookControllerPath, err)
return fmt.Errorf("failed to apply manifests %s: %w", kfnotebookControllerPath, err)
}
l.WithValues("Path", kfnotebookControllerPath).Info("apply manifests done kf-notebook controller done")

Expand Down

0 comments on commit 0b4b1f4

Please sign in to comment.