Skip to content

Commit 559674c

Browse files
authored
Update google-cloud.md
1 parent 887ee18 commit 559674c

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

infrastructure/kctf/walkthrough/google-cloud.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,27 @@ The purpose of this walkthrough is to guide you along the way to configure the i
55
## First, enable the necessary GCP features
66
Before we start, you need to have billing set up, and the compute API enabled. Let's do that now.
77
1. <walkthrough-project-billing-setup>Select a project and enable billing.</walkthrough-project-billing-setup>
8-
1. <walkthrough-enable-apis apis="compute.googleapis.com">Enable the compute API.</walkthrough-enable-apis>
8+
1. <walkthrough-enable-apis apis="compute.googleapis.com,container.googleapis.com,containerregistry.googleapis.com">Enable the compute API.</walkthrough-enable-apis>
9+
10+
You can enable APIs from the command line with:
11+
```
12+
gcloud services enable compute container containerregistry.googleapis.com
13+
```
914

1015
## Then, configure the project
1116

17+
### Make sure your umask allows copying executable files
18+
19+
```
20+
umask 0022
21+
```
22+
23+
### Enable docker integration with Google Container Registry
24+
25+
```
26+
gcloud auth configure-docker
27+
```
28+
1229
### Add the bin directory to your PATH
1330

1431
```

0 commit comments

Comments
 (0)