Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

kubernetes - Kubectl -f Abbreviation

I am new to Kubectl commands, I met

kubectl -f -lapp=nginx

As from documentation, and the command --help

-f, --follow=false: Specify if the logs should be streamed.

I want to confirm, if I use -f like above in command, does that mean:

kubectl --follow=true -lapp=nginx

I am asking this because documentation said --follow=false is default, so if I use -f, in this case, it means --follow=true, is my understanding correct ?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Yes, it will do the same thing for you. --follow=true and -f both are same.

here is an example of full command to show log with -f or --follow=true:

kubectl --follow=true logs -n $Namespace pod_name -c container_name
kubectl  logs -n $Namespace pod_name -c container_name -f

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...