Ruby Stack failed to deploy on Google Developers Console

后端 未结 1 1780
不知归路
不知归路 2021-01-29 00:30

I tried to deploy Ruby stack using Google Developers Console, but no success. I tried several times at other project, error was always the same (below).

Do you have any

相关标签:
1条回答
  • 2021-01-29 01:20

    I replicated the issue you experienced several times and it also failed. What finally worked was playing with the zones/regions when deploying the ruby stack :

    Developers console > Click-to-deploy > Set MySQL password > Advanced Options, choose a different zone and click Deploy.

    Another useful tool when investigating this is Console Output. Even if the deployment fails, you can go to the VM instance and check View Output towards the bottom of the page. It will list all the packages and any errors encountered. The following command will achieve the same thing:

    $ gcloud compute instances get-serial-port-output <INSTANCE_NAME> --project <PROJECT_ID> --zone <ZONE_NAME>
    

    Please advise if still seeing issues.

    0 讨论(0)
提交回复
热议问题