@@ -79,17 +79,16 @@ storage.
79
79
80
80
Setting up Shared Storage
81
81
-------------------------
82
- For us, since we're on AWS, we'll use Amazon's EFS service to create a new NFS
82
+ Since we're on AWS, we'll use Amazon's EFS service to create a new NFS
83
83
shared file system. We do need to make sure we have the right availability
84
84
zones and security groups selected, but overall it's very easy to set up.
85
85
86
86
After the EFS share comes up, click the "DNS Names" link. You should see a DNS
87
- entry for each availability zone, be sure to note them down, as we'll use them
88
- to mount the storage to our instances.
87
+ entry for each availability zone, we'll use these to mount the storage to our instances.
89
88
90
89
Alright, let's go ahead and SSH into both Jenkins VMs.
91
90
92
- Next, run :
91
+ Run :
93
92
94
93
` ` ` bash
95
94
mkdir /var/lib/jenkins
@@ -99,7 +98,7 @@ That will create a directory for our Jenkins home. Next, open up your
99
98
` /etc/fstab ` file and add the following line:
100
99
101
100
``` bash
102
- us-yourRegion-URL-thing .amazonaws.com:/ /var/lib/jenkins nfs4 rw,hard,intr 0 2
101
+ us-west-2 .amazonaws.com:/ /var/lib/jenkins nfs4 rw,hard,intr 0 2
103
102
```
104
103
105
104
This is the line where we'll need to make sure we use the right DNS name for
0 commit comments