File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ support immediate volume binding.
163
163
To create clusters allowing you to
164
164
[ enable container-based virtual machines (CVMs)] ( ../../admin/workspace-management/cvms.md )
165
165
as a workspace deployment option, you'll need to
166
- [ create a nodegroup] ( https://eksctl.io/usage/managing-nodegroups /#creating-a-nodegroup-from-a-config-file ) .
166
+ [ create a nodegroup] ( https://eksctl.io/usage/eks-managed-nodes /#creating-managed-nodegroups ) .
167
167
168
168
1 . Define your config file (we've named the file ` coder-node.yaml ` , but you can
169
169
call it whatever you'd like):
@@ -177,10 +177,17 @@ as a workspace deployment option, you'll need to
177
177
name : <YOUR_CLUSTER_NAME>
178
178
region : <YOUR_AWS_REGION>
179
179
180
- nodeGroups :
180
+ managedNodeGroups :
181
181
- name : coder-node-group
182
182
amiFamily : Ubuntu2004
183
183
ami : <your Ubuntu 20.04 AMI ID>
184
+ instanceType : <instance-type>
185
+ minSize : 1
186
+ mazSize : 2
187
+ desiredCapacity : 1
188
+ overrideBootstrapCommand : |
189
+ # !/bin/bash -xe
190
+ sudo /etc/eks/bootstrap.sh --apiserver-endpoint '' --b64-cluster-ca 'LS0tLS1...LS0tCg==' '<cluster-name>'
184
191
```
185
192
186
193
> [ See here for a list of EKS-compatible Ubuntu AMIs] ( https://cloud-images.ubuntu.com/docs/aws/eks/ )
You can’t perform that action at this time.
0 commit comments