You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, First of all I think this couldn't really be an issue at all but it will be greatly appreciated if the plugin cover this little problem.
I install stern with krew by kubectl krew install stern in my powershell teminal.
To use stern I have to run kubectl stern instead of single stern command
so when using this plugin on lens I got this error.
PS C:\Users\user> stern deployment/web --color auto --namespace project_namespace --since 1s
stern : The term 'stern' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or
if a path was included, verify that the path is correct and try again.
At line:1 char:1+ stern deployment/web --color auto --namespace project_n ...
+ ~~~~~
+ CategoryInfo : ObjectNotFound: (stern:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
My solution is to mapping kubectl stern command to stern for example in powershell terminal.
functionstern {
kubectl stern $args
}
The text was updated successfully, but these errors were encountered:
Hi @karnzx, during next days I'll try to do something to fix this "issue".
I don't know if Lens Extension API have something to do this, but in any case I could create a specific settings (in Lens/OpenLens settings page) to enable in this case.
Hi, First of all I think this couldn't really be an issue at all but it will be greatly appreciated if the plugin cover this little problem.
I install stern with krew by
kubectl krew install stern
in my powershell teminal.To use
stern
I have to runkubectl stern
instead of singlestern
commandso when using this plugin on lens I got this error.
My solution is to mapping
kubectl stern
command tostern
for example in powershell terminal.The text was updated successfully, but these errors were encountered: