Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 17 additions & 13 deletions skills/cloud/google-cloud-recipe-onboarding/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,19 +95,23 @@ default](https://docs.cloud.google.com/service-usage/docs/enabled-service#defaul

### 6. Deploy Your First Resource

Choose a simple entry point based on your needs: -
**[Cloud Run](https://docs.cloud.google.com/run/docs) (Recommended for Apps):**
Deploy a containerized "Hello World" app. -
**[Compute Engine](https://docs.cloud.google.com/compute/docs):** Create a small
Linux VM (e.g., `e2-micro` which is part of the Always Free tier in certain
regions). - **[Cloud Storage](https://docs.cloud.google.com/storage/docs):**
Create a bucket to store files.

Example (Cloud Run):

```bash
gcloud run deploy hello-world \
--image=gcr.io/cloudrun/hello \ --platform=managed \ --region=us-central1 \
Choose a simple entry point based on your needs:

- **[Cloud Run](https://docs.cloud.google.com/run/docs) (Recommended for Apps):**
Deploy a containerized "Hello World" app.
- **[Compute Engine](https://docs.cloud.google.com/compute/docs):** Create a small
Linux VM (e.g., `e2-micro` which is part of the Always Free tier in certain
regions).
- **[Cloud Storage](https://docs.cloud.google.com/storage/docs):** Create a bucket
to store files.

Example (Cloud Run):

```bash
gcloud run deploy hello-world \
--image=gcr.io/cloudrun/hello \
--platform=managed \
--region=us-central1 \
--allow-unauthenticated
```

Expand Down