Skip to content

Commit 42e27fe

Browse files
author
Katie Horne
committed
update add'l K8s version refs
1 parent dafadbe commit 42e27fe

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

admin/workspace-management/cvms.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ Google, Azure, and Amazon to support CVMs.
4444
To use CVMs with GKE, [create a cluster](../../setup/kubernetes/google.md) using
4545
the following parameters:
4646

47-
- GKE Master version `>= 1.17`
48-
- `node-version >= 1.17`
47+
- GKE Master version `latest`
48+
- `node-version = "latest"`
4949
- `image-type = "UBUNTU"`
5050

51-
You can also provide `latest` instead of specific version numbers. For example:
51+
For example:
5252

5353
```console
5454
gcloud beta container clusters create "YOUR_NEW_CLUSTER" \

guides/ssl-certificates/cloudflare.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ you can enable HTTPS on your Coder deployment.
2222

2323
You must have:
2424

25-
- A Kubernetes cluster (v1.17 or greater) with internet connectivity
25+
- A Kubernetes cluster [meeting Coder's
26+
requirements](../../setup/kubernetes/index.md) with internet connectivity
2627
- kubectl with patch version
2728
[greater than v1.18.8, v1.17.11, or v1.16.14](https://cert-manager.io/docs/installation/upgrading/upgrading-0.15-0.16/#issue-with-older-versions-of-kubectl)
2829

guides/ssl-certificates/route53.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ configure your Coder hostname and dev URLs.
2323

2424
You must have:
2525

26-
- A [Kubernetes cluster](../../setup/kubernetes/index.md) (v1.17 or greater)
27-
with internet connectivity
26+
- A Kubernetes cluster [meeting Coder's
27+
requirements](../../setup/kubernetes/index.md) with internet connectivity
2828
- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
2929

3030
You should also:

setup/kubernetes/aws.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,14 @@ SSH_KEY_PATH="<PATH/TO/KEY>.pub"
8484
REGION="YOUR_REGION"
8585
```
8686

87-
The following will spin up a Kubernetes cluster using `eksctl`:
87+
The following will spin up a Kubernetes cluster using `eksctl` (be sure to
88+
update the parameters as necessary, especially the version number):
8889

8990
```console
9091

9192
eksctl create cluster \
9293
--name "$CLUSTER_NAME" \
93-
--version 1.17 \
94+
--version <version> \
9495
--region "$REGION" \
9596
--nodegroup-name standard-workers \
9697
--node-type t3.medium \
@@ -172,7 +173,7 @@ as a workspace deployment option, you'll need to
172173
kind: ClusterConfig
173174

174175
metadata:
175-
version: "1.17"
176+
version: "<YOUR_K8s_VERSION"
176177
name: <YOUR_CLUSTER_NAME>
177178
region: <YOUR_AWS_REGION>
178179

0 commit comments

Comments
 (0)