Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.

Commit 9049343

Browse files
committed
Add note about GCP project quota
1 parent e6e51c7 commit 9049343

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ The whole process takes around twenty minutes. In the end, the following resourc
2929
- [Jaeger operator](https://github.com/jaegertracing/helm-charts/tree/main/charts/jaeger-operator) - and Jaeger deployment for gitpod distributed tracing.
3030
- [gitpod.io](https://github.com/gitpod-io/gitpod) deployment.
3131

32+
## Common errors running make install
33+
34+
- Insufficient regional quota to satisfy request
35+
36+
Depending on the size of the configured `disks size` and `machine-type`, you need to request an [increase in the service quota](https://console.cloud.google.com/iam-admin/quotas?usage=USED)
37+
38+
![https://console.cloud.google.com/iam-admin/quotas?usage=USED](./images/quota.png "GCP project Quota")
39+
40+
After increasing the quota just run `make install`
41+
3242
## Verify the installation
3343

3444
First, check that Gitpod components are running.

setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function create_node_pool() {
7676
gcloud container node-pools \
7777
create "${POOL_NAME}" \
7878
--cluster="${CLUSTER_NAME}" \
79-
--disk-type="pd-ssd" --disk-size="375GB" \
79+
--disk-type="pd-ssd" --disk-size="100GB" \
8080
--image-type="UBUNTU_CONTAINERD" \
8181
--machine-type="n2-standard-4" \
8282
--num-nodes=1 \

0 commit comments

Comments
 (0)