GCP Cloud Run Serverless containers

GCP Cloud Run Serverless containers similar to AWS FarGate Click Create service to display the Create service form.
In the form,
Select Deploy one revision from an existing container image.
Click Test with a sample container.
In the Region pulldown menu, select the region where you want your service located.
Under Authentication, select Allow unauthenticated invocations.
Click Create to deploy the sample container image to Cloud Run and wait for the deployment to finish.
Goto Services, select the service and then Click the displayed URL link to run the deployed container.

GCP Cloud Source Repositories

GCP Cloud Source Repositories similar to Github and Bitbucket Cloud Source Repositories are fully featured, private Git repositories hosted on Google Cloud.
Open Cloud Source Repositories,Click Add repostiory and Create new repository test
Register a public key In the GCP Console, open the Manage SSH Keys page.
Open Cloud Source Repositories Click Register SSH key.
The Register SSH Key dialog opens. In the Key name field, type a unique name for the key.
In the Key field, copy the key string from your public key file.(create this using ssh-keygen -t [KEY_TYPE] -C "[USER_EMAIL]") where KEY_TYPE is rsa Click Register.
Clone this repository to a local Git repository:
Switch to your new local Git repository: $cd test
After you've committed code to your local Git repository, push it to this repository: $git add . $git commit -m "message" $git push -u origin master