Skip to content
This repository was archived by the owner on May 9, 2025. It is now read-only.

Commit a3c2a61

Browse files
committed
Merge release branch into master [skip ci]
2 parents 22e217e + fecc96e commit a3c2a61

File tree

4 files changed

+31
-10
lines changed

4 files changed

+31
-10
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
# Change Log
22

3+
## [v2.0.3](https://github.com/nubisproject/nubis-docs/tree/v2.0.3) (2017-11-02)
4+
[Full Changelog](https://github.com/nubisproject/nubis-docs/compare/v2.0.2...v2.0.3)
5+
6+
**Merged pull requests:**
7+
8+
- PREREQs docs fix [\#219](https://github.com/nubisproject/nubis-docs/pull/219) ([cvalaas](https://github.com/cvalaas))
9+
310
## [v2.0.2](https://github.com/nubisproject/nubis-docs/tree/v2.0.2) (2017-10-24)
411
[Full Changelog](https://github.com/nubisproject/nubis-docs/compare/v2.0.1...v2.0.2)
512

13+
**Closed issues:**
14+
15+
- Tag v2.0.2 release [\#216](https://github.com/nubisproject/nubis-docs/issues/216)
16+
617
**Merged pull requests:**
718

19+
- Merge v2.0.2 release into develop. \[skip ci\] [\#218](https://github.com/nubisproject/nubis-docs/pull/218) ([tinnightcap](https://github.com/tinnightcap))
20+
- Update CHANGELOG for v2.0.2 release \[skip ci\] [\#217](https://github.com/nubisproject/nubis-docs/pull/217) ([tinnightcap](https://github.com/tinnightcap))
821
- Update versions for docker images [\#215](https://github.com/nubisproject/nubis-docs/pull/215) ([tinnightcap](https://github.com/tinnightcap))
922

1023
## [v2.0.1](https://github.com/nubisproject/nubis-docs/tree/v2.0.1) (2017-10-13)

PREREQUISITES.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ To test that everything has been set up correctly, run the following command:
218218

219219
```bash
220220

221-
vault-exec aws ec2 describe-regions
221+
aws-vault exec -n ${ACCOUNT_NAME}-admin -- aws ec2 describe-regions
222222

223223
```
224224

@@ -254,6 +254,14 @@ aws-vault --debug login ${ACCOUNT_NAME}-ro
254254

255255
```
256256

257+
For future convenience, add this to your .bashrc:
258+
259+
```bash
260+
261+
alias vault-exec="aws-vault exec ${ACCOUNT_NAME}-admin --"
262+
263+
```
264+
257265
## nubis-builder
258266

259267
This is a Docker image we built to drive Packer. The embedded tools greatly
@@ -356,7 +364,7 @@ deploy:
356364

357365
```bash
358366

359-
vault-exec "${NUBIS_DOCKER[@]}" -e GIT_COMMIT_SHA=$(git rev-parse HEAD) nubisproject/nubis-builder:v0.5.0
367+
vault-exec "${NUBIS_DOCKER[@]}" -e GIT_COMMIT_SHA=$(git rev-parse HEAD) nubisproject/nubis-builder:v0.7.0
360368

361369
```
362370

@@ -387,8 +395,8 @@ the nubis-skel application into the account.
387395

388396
```bash
389397

390-
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.3.0 plan
391-
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.3.0 apply
398+
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.4.0 plan
399+
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.4.0 apply
392400

393401
```
394402

@@ -408,7 +416,7 @@ To finish up, remove your application from the training account:
408416

409417
```bash
410418

411-
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.3.0 destroy
419+
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.4.0 destroy
412420

413421
```
414422

PUPPET.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We use [Packer](http://packer.io) to build our system images, but under the hood
44
we use puppet-masterless to do the heavy lifting.
55

66
First, let's be clear, you do not have to use puppet at all to build images, you
7-
could simply rely on packer's provisionners, copying files to the image and
7+
could simply rely on packer's provisioners, copying files to the image and
88
running arbitrary shell commands.
99

1010
However, that is not the recommended mechanism to deliver quality Nubis images.

dashboard/cheat-sheet.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ NUBIS_DOCKER=( 'docker' 'run' \
2929

3030
```bash
3131

32-
vault-exec "${NUBIS_DOCKER[@]}" -e GIT_COMMIT_SHA=$(git rev-parse HEAD) nubisproject/nubis-builder:v0.5.0
32+
vault-exec "${NUBIS_DOCKER[@]}" -e GIT_COMMIT_SHA=$(git rev-parse HEAD) nubisproject/nubis-builder:v0.7.0
3333

3434
```
3535

@@ -41,10 +41,10 @@ sshuttle -v --dns -r \
4141
<username>@jumphost.stage.us-west-2.nubis-training.nubis.allizom.org \
4242
10.164.19.0/24
4343

44-
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.3.0 plan
44+
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.4.0 plan
4545

46-
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.3.0 apply
46+
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.4.0 apply
4747

48-
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.3.0 destroy
48+
vault-exec "${NUBIS_DOCKER[@]}" nubisproject/nubis-deploy:v0.4.0 destroy
4949

5050
```

0 commit comments

Comments
 (0)