Skip to content

Commit 61530de

Browse files
nandajavarmaadrienthebo
authored andcommitted
Update install/infra/single-cluster/gcp/README.md
Co-authored-by: Adrien Thebo <[email protected]>
1 parent 611bb8e commit 61530de

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

install/infra/single-cluster/gcp/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ NAME READY STATUS RESTARTS AGE
193193
proxy-5998488f4c-t8vkh 0/1 Init 0/1 0 5m
194194
```
195195

196-
The most likely reason is that the DNS01 challenge has yet to resolve. To fix this, make sure you have added the NS records corresponding to the `cloudDNS` zone of the `domain_name` added to your domain provider.
196+
The most likely reason is that the DNS01 challenge cannot be completed, typically because DNS zone delegation hasn't been set up from the parent domain to the subdomain that Gitpod is managing (specified by the `domain_name` variable). To fix this, make sure that NS records for `domain_name` in the parent zone are created and point to the nameservers of the Gitpod managed zone. See the [Google Cloud DNS documentation](https://cloud.google.com/dns/docs/dns-overview#delegated_subzone) for more information on zone delegation.
197197

198198
Once the DNS record has been updated, you will need to delete all Cert Manager pods to retrigger the certificate request
199199

@@ -214,6 +214,8 @@ https-certificates True https-certificates 5m
214214
There is a chance that your kubeconfig has gotten expired after a specific amount of time. You can reconnect to the cluster by using:
215215

216216
``` sh
217+
# make sure you are authenticated using the service account you used to create the cluster
218+
gcloud auth activate-service-account --key-file=/path/to/account/key.json
217219
gcloud container clusters get-credentials <cluster_name> --region <region> --zone <zone> --project <project>
218220
```
219221

install/infra/single-cluster/gcp/variables.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ variable "cluster_version" {
4040

4141
variable "enable_external_database" {
4242
default = true
43-
description = "Set this to false to avoid creating an RDS database to use with Gitpod instead of inclsuter mysql"
43+
description = "Create an external Cloud DNS instance for Gitpod"
4444
}
4545

4646
variable "enable_external_storage" {
4747
default = true
48-
description = "Set this to false to avoid creating an s3 storage to use with Gitpod instead of incluster minio"
48+
description = "Create a GCS bucket for Gitpod object storage"
4949
}
5050

5151
variable "enable_external_registry" {
5252
default = true
53-
description = "Set this to false to create an AWS ECR registry to use with Gitpod(Not officially supported)"
53+
description = "Create a Google Container Registry for Gitpod workspace images"
5454
}

0 commit comments

Comments
 (0)