To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…
How to Create a Soft Symbolic Link (symlink) in Unix/Linux
# Create a soft symbolic link from /mnt/original (file or folder) to ~/link
ln -s /mnt/original ~/link
This Post Has 0 Comments