Starting off as a muggle that naïve to the Math's and Data Science world.

Openlens

1. Install scoop

open powershell

Set-ExecutionPolicy RemoteSigned -Scope CurrentUser 
irm get.scoop.sh | iex

2. Install Openlens

open command prompt

scoop bucket add extras
scoop install openlens

3. Open Openlens and install plugins

Step 1: open Openlens

Step 2: open “Extensions”

Step 3: fill up “@alebcay/openlens-node-pod-menu

BeforeAfter
UI button for
– Attach to pod
kubectl attach -i -t -n <<namespace>> <<pod name>>
– pod shell
kubectl exec -it <<pod name>> -n <<namespace>> sh
– pod logs
kubectl logs <<pod name>> -n <<namespace>> –tail 10

Leave a comment