You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
* Specify the zonein which to create your volumes,for example:`--set-value=Storage.AvailabilityZone=us-west-2a`.
1307
-
* (Optional) To assign the volume-provisioner to a specific node,for example, a specific node group with an IAM role that can create EBS volumes,`--set-value Storage.VolumeProvisioner.NodeSelector=node-type=addons`.
1308
-
* To use [encrypted EBS volumes](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_key_mgmt){:target="\_blank"}, add the custom value`--set-value=Storage.Encrypted=true`.
1309
-
* If you already have a key, add its ARN via`--set-value=Storage.KmsKeyId=<key id> value`. Otherwise a key is generated by AWS.
1304
+
* Install the Runner with additional options:
1305
+
* Specify the zonein which to create your volumes,for example:`--set-value=Storage.AvailabilityZone=us-west-2a`.
1306
+
* (Optional) To assign the volume-provisioner to a specific node,for example, a specific node group with an IAM role that can create EBS volumes,`--set-value Storage.VolumeProvisioner.NodeSelector=node-type=addons`.
1307
+
* To use [encrypted EBS volumes](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSEncryption.html#EBSEncryption_key_mgmt){:target="\_blank"}, add the custom value`--set-value=Storage.Encrypted=true`.
1308
+
* If you already have a key, add its ARN via`--set-value=Storage.KmsKeyId=<key id> value`. Otherwise a key is generated by AWS.
1309
+
1310
+
Here is an example with _all_ the options configured:
1310
1311
1311
-
Here is an example with _all_ the options configured:
1312
1312
```shell
1313
1313
codefresh runner init \
1314
1314
--name my-aws-runner \
@@ -1323,15 +1323,12 @@ codefresh runner init \
1323
1323
```
1324
1324
For descriptions of the other options, run`codefresh runner init --help` ([global parameter table](#customizing-the-wizard-installation)).
1325
1325
1326
-
{:start="3"}
1327
-
1. When the Wizard completes the installation, modify the runtime environment of`my-aws-runner` to specify the necessary toleration, nodeSelector and disk size:
1326
+
* When the Wizard completes the installation, modify the runtime environment of`my-aws-runner` to specify the necessary toleration, nodeSelector and disk size:
1328
1327
* Run:
1329
1328
```shell
1330
1329
codefresh get re --limit=100 my-aws-runner/cf -o yaml> my-runtime.yml
1331
1330
```
1332
-
1333
1331
* Modify the file`my-runtime.yml` as shown below:
1334
-
1335
1332
```yaml
1336
1333
version: null
1337
1334
metadata:
@@ -1385,8 +1382,7 @@ description: 'Runtime environment configure to cluster: my-aws-runner and namesp
1385
1382
accountId: 5cb563d0506083262ba1f327
1386
1383
```
1387
1384
1388
-
{:start="4"}
1389
-
1. Apply changes.
1385
+
* Apply changes.
1390
1386
```shell
1391
1387
codefresh patch re my-aws-runner/cf -f my-runtime.yml