Very recently, I needed to use AnyConnect vpn software to connect to CISCO lab.
I could have used my linux box, but the remote ASA gateway was not having linux
package flashed. Oh, and if you are wondering what is this dependency ? In
short, the remote gateway (in this case ASA) need to be flashed with AnyConnect
package of same OS as of client machine. That means if client is a linux box,
remote gateway need to be flashed with AnyConnect linux variant package. If
there is issue like this, you…
According to python official document, f-string is a string literal that is
prefixed with ‘f’ or ‘F’. This was introduced in python 3.6. Apart from
usual python string formatting '%s %d' % ('python', 3.6)
and the format()
method, python 3.6 introduces f-string. Official doc can be
found here.
If you are working on kubernetes, there is a high chance that you would have
needeed to interact with kubernetes cluster very frequently. Most of the time,
its remote or lab servers. Instead of login remote machine and accesing cluster
, you can use kubectl on your local workstation to interact with remote
cluster. Ofcourse you can use official go-client or python-client to
access cluster programatically. But if you intend to use kubectl, follow
below enumerated steps.