C3W1 - Task 5. Generate predictions

Hi,
Did anyone encounter issue with running the following command?
ENDPOINT=$(gcloud run services describe automl-service --platform managed --region us-central1 --format ‘value(status.url)’)

I got “The [project] resource is not properly specified. Please specify the argument [–project] on the command line or set the property [core/project].” error.

This is odd because the lab instructions work well for me.

ENDPOINT=$(gcloud run services describe automl-service --platform managed --region us-central1 --format 'value(status.url)')
https://automl-service-kg7jfw2rra-uc.a.run.app

In your case, setting the project id explicitly will help (see --project argument)

student_03_002204e940e3@cloudshell:~ (qwiklabs-gcp-00-463a4c180828)$ ENDPOINT=$(gcloud run services describe automl-service --platform managed --region us-central1 --project $GOOGLE_CLOUD_PROJECT --format 'value(status.url)')
student_03_002204e940e3@cloudshell:~ (qwiklabs-gcp-00-463a4c180828)$ echo $ENDPOINT
https://automl-service-kg7jfw2rra-uc.a.run.app