I created a pod named multi-container. Its a yaml file:
apiVersion: v1
kind: Pod
metadata:
name: multi-container
spec:
containers:
- image: nginx
name: nginx-container
- image: redis
name: redis-container
- image: consul
name: consul-container
If I need to login to any of the container, what command do I use?