1How many labels on node node01?kubectl describe node node012What is the value set to the label key beta.kubernetes.io/arch on node01?kubectl describe node node01 | grep beta.kubernetes.io/arch3Apply a label color=blue to node node01.kubectl label node node01 color=bluenode/node01 labeled4Create a new deployment named blue with the nginx image and 3 replicas.kubectl create deployment blue --imag..