Skip to content

Commit 944732c

Browse files
committed
moo
1 parent dde352c commit 944732c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

_posts/2016-8-22-Jenkins CCJPE HA.markdown

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,17 +79,16 @@ storage.
7979
8080
Setting up Shared Storage
8181
-------------------------
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
8383
shared file system. We do need to make sure we have the right availability
8484
zones and security groups selected, but overall it's very easy to set up.
8585
8686
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.
8988
9089
Alright, let's go ahead and SSH into both Jenkins VMs.
9190
92-
Next, run:
91+
Run:
9392
9493
``` bash
9594
mkdir /var/lib/jenkins
@@ -99,7 +98,7 @@ That will create a directory for our Jenkins home. Next, open up your
9998
`/etc/fstab` file and add the following line:
10099

101100
``` 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
103102
```
104103

105104
This is the line where we'll need to make sure we use the right DNS name for

0 commit comments

Comments
 (0)