Hello everyone, is it possible in the command imperative mode to assign two port . . .

Frankube:
hello everyone, is it possible in the command imperative mode to assign two ports to a pod without having to edit the manifest?
Like kubectl create deployment test–image=nginx --port 80 --port 443 --dry-run=client -oyaml > test.yaml In this way in the manifest we have only 443 port and I have to add the port 80 thanks

Ninad Desai:
I dont think it is possible , you can try if that works for you on minikube

Frankube:
ok, thanks