Status Update
Comments
va...@google.com <va...@google.com>
sa...@google.com <sa...@google.com> #2
Hello,
Thank you for reaching out to us!
To assist us in conducting thorough investigation, we kindly request your cooperation in providing the following information regarding the reported issue:
- Have you encountered any specific errors or issues while trying to deploy with the incorrect command?
- It would be greatly helpful if you could attach screenshots of the output related to this issue.
Your cooperation in providing these details will enable us to dive deeper into the matter and work towards a prompt resolution. We appreciate your assistance and look forward to resolving this issue for you.
Thank you for your understanding and cooperation.
mi...@gmail.com <mi...@gmail.com> #3
Assuming 2 env vars:
Now: --set-env-vars=X=Y--set-env-vars=A=B
Correct --set-env-vars=X=Y --set-env-vars=A=B
^ missing space at the moment in the UI
mi...@gmail.com <mi...@gmail.com> #4
sa...@google.com <sa...@google.com> #5
Hello,
Thank you for reaching out to us with your request.
We have duly noted your feedback and will thoroughly validate it. While we cannot provide an estimated time of implementation or guarantee the fulfillment of the issue, please be assured that your input is highly valued. Your feedback enables us to enhance our products and services.
We appreciate your continued trust and support in improving our Google Cloud Platform products. In case you want to report a new issue, Please do not hesitate to create a new issue on the
Once again, we sincerely appreciate your valuable feedback; Thank you for your understanding and collaboration.
Description
```
gcloud run deploy prd\
--image=dashboard:latest \
--set-env-vars=GCP_PROJECT=projprd--set-env-vars=ENV=prd--set-env-vars=COOKIE_NAME=xxx
...
&& gcloud run services update-traffic mlflow-dashboard-neuralperso-prd --to-latest
```
The issue is that there are no spaces between eacgh "--set-env-vars=a=b" leading to the wrong command. The fix is to just concatenate the env vars and add a space between each entry.