Skip to content

Commit 7cb4d6f

Browse files
authoredMay 30, 2023
Merge pull request #45 from NREL/update_361
updates for 3.6.1
2 parents 6508dc9 + 828bc1d commit 7cb4d6f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎aws/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ eksctl create iamserviceaccount \
9898
--role-only \
9999
--role-name AmazonEKS_EBS_CSI_DriverRole
100100
```
101-
3 ) Install the Add-On (replace 111122223333 with your account id)
101+
3 ) Install the Add-On (replace 111122223333 with your account id). An easy way to get your account id is to run the following cmd `eksctl get cluster openstudio-server -o yaml | grep arn`
102102
```bash
103103
eksctl create addon --name aws-ebs-csi-driver --cluster openstudio-server --service-account-role-arn arn:aws:iam::111122223333:role/AmazonEKS_EBS_CSI_DriverRole --force
104104
```
105105
106106
## Connecting to your cluster using kubectl
107107
108-
Once eksctl is done setting up the cluster, it will automatically setup the connection by creating a `~/.kube/config` file so you and can begin using helm and kubectl cli tools to communicate to the cluster. occasionally, you need to run generate this config manually. If you are not able to run `kubectl get nodes` you can re-run the kube config setup by running `aws eks update-kubeconfig --name openstudio-server` Change the `--name` to match the cluster name if different from the example.
108+
Once eksctl is done setting up the cluster, it will automatically setup the connection by creating a `~/.kube/config` file so you and can begin using helm and kubectl cli tools to communicate to the cluster. occasionally, you need to run generate this config manually. If you are not able to run `kubectl get nodes` you can re-run the kube config setup by running `aws eks update-kubeconfig --name openstudio-server` Change the `--name` to match the cluster name if different from the example. Now that the cluster is ready, you can now deploy the helm chart. Please refer the main README.md doc for deploying the helm chart.
109109
110110
## Delete the cluster using eksctl
111111

‎openstudio-server/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ rserve:
101101
number_of_workers: "1"
102102
container:
103103
name: "rserve"
104-
image: "nrel/openstudio-rserve:3.6.0"
104+
image: "nrel/openstudio-rserve:3.6.1"
105105
resources:
106106
requests:
107107
cpu: 1
@@ -118,7 +118,7 @@ web_background:
118118
replicas: 1
119119
container:
120120
name: "web-background"
121-
image: "nrel/openstudio-server:3.6.0"
121+
image: "nrel/openstudio-server:3.6.1"
122122
resources:
123123
limits:
124124
cpu: 0.5
@@ -135,7 +135,7 @@ web:
135135
passenger_max_pool_size: "21"
136136
container:
137137
name: "web"
138-
image: "nrel/openstudio-server:3.6.0"
138+
image: "nrel/openstudio-server:3.6.1"
139139
resources:
140140
limits:
141141
cpu: 2
@@ -168,7 +168,7 @@ worker:
168168
label: "worker"
169169
container:
170170
name: "worker"
171-
image: "nrel/openstudio-server:3.6.0"
171+
image: "nrel/openstudio-server:3.6.1"
172172
resources:
173173
limits:
174174
cpu: 1

0 commit comments

Comments
 (0)
Please sign in to comment.