-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add more verbosity to undeploy (#5340)
* Add more verbosity to undeploy * Fix stdout messages for odo delete * Fix styling for odo delete * Update pkg/devfile/adapters/kubernetes/component/adapter.go Co-authored-by: Dharmit Shah <[email protected]> * Fix typo Co-authored-by: Dharmit Shah <[email protected]>
- Loading branch information
1 parent
b015b81
commit ce9506d
Showing
7 changed files
with
77 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package component | ||
|
||
type NoDefaultDeployCommandFoundError struct{} | ||
|
||
func (e NoDefaultDeployCommandFoundError) Error() string { | ||
return "error deploying, no default deploy command found in devfile" | ||
} | ||
|
||
type MoreThanOneDefaultDeployCommandFoundError struct{} | ||
|
||
func (e MoreThanOneDefaultDeployCommandFoundError) Error() string { | ||
return "more than one default deploy command found in devfile, should not happen" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters