VMware Cloud Community
legioon
Enthusiast
Enthusiast
Jump to solution

How to make ssh to embedded vRO in vRA 8.1 ?

Hi,

I have two question. I would like to make ssh to embbedded vRO in vRA 8.1. But, I'm getting the following error.

pastedImage_0.png

Also, I need the make some changes in vRO. Then, I need the restart services of VRO. Is that correct way ? "kubectl -n prelude delete pod vco-app-<hash>-<hash>"

Tags (2)
Reply
0 Kudos
1 Solution

Accepted Solutions
iiliev
VMware Employee
VMware Employee
Jump to solution

kubectl -n prelude exec -it vco-app-7d874bd699-k6bc4 -c vco-server-app -- bash

(of course, replace vco-app pod ID vco-app-7d874bd699-k6bc4 with the one from your deployment)

View solution in original post

4 Replies
iiliev
VMware Employee
VMware Employee
Jump to solution

Hi,

For multi-container pods, you may need to specify the exact container you want to connect to, using the command line option -c <container>. If you need to connect to vRO server container, you need to pass -c vco-server-app

Reply
0 Kudos
legioon
Enthusiast
Enthusiast
Jump to solution

Hi, Almost, I have tried to all commands syntax. But, it does not work. If you tried before could you send me full command ?

Reply
0 Kudos
iiliev
VMware Employee
VMware Employee
Jump to solution

kubectl -n prelude exec -it vco-app-7d874bd699-k6bc4 -c vco-server-app -- bash

(of course, replace vco-app pod ID vco-app-7d874bd699-k6bc4 with the one from your deployment)

legioon
Enthusiast
Enthusiast
Jump to solution

It worked! Thank you very much !

Reply
0 Kudos