Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Net & Scope versions to 1.9.4 and 1.3.0 respectively #123

Merged
merged 6 commits into from
Mar 29, 2017
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions aws/ecs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
## Weaveworks ECS Image (2016-11-29)
New features [#117](github.com/weaveworks/integrations/pull/117):
- Update Weave Net to 1.8.1
- Update Weave Scope to 1.1.0
- Update Weave Net to 1.9.3

This comment was marked as abuse.

- Update Weave Scope to 1.2.1
- Enable Scope ECS views
- Add documentation for new actions required for Scope ECS views
- Update base ECS images (including new Ohio region)

## Weaveworks ECS Image (2017-03-08)

This comment was marked as abuse.


New features:
- Update base AMIs to 2016.03.i, Weave Scope to 1.2.1 and Weave Net Version to 1.9.3 [#108](github.com/weaveworks/integrations/pull/108)

## Weaveworks ECS Image (2016-09-22)

New features:
Expand Down
4 changes: 2 additions & 2 deletions aws/ecs/cloudformation-identiorca.json
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@
"/",
[
"https://github.com/weaveworks/weave/releases/download",
"v1.8.1",
"v1.9.4",
"weave"
]
]
Expand All @@ -671,7 +671,7 @@
"/",
[
"https://github.com/weaveworks/scope/releases/download",
"v1.1.0",
"v1.3.0",
"scope"
]
]
Expand Down
4 changes: 2 additions & 2 deletions aws/ecs/cloudformation-larger-app.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@
"WeaveNetVersion": {
"Type": "String",
"Description": "Version of Weave Net to install",
"Default": "v1.8.1"
"Default": "v1.9.4"
},
"WeaveScopeVersion": {
"Type": "String",
"Description": "Version of Weave Scope to install",
"Default": "v1.1.0"
"Default": "v1.3.0"
}
},
"Conditions": {
Expand Down
4 changes: 2 additions & 2 deletions aws/ecs/cloudformation-no-app.json
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@
"/",
[
"https://github.com/weaveworks/weave/releases/download",
"v1.8.1",
"v1.9.4",
"weave"
]
]
Expand All @@ -555,7 +555,7 @@
"/",
[
"https://github.com/weaveworks/scope/releases/download",
"v1.1.0",
"v1.3.0",
"scope"
]
]
Expand Down
4 changes: 2 additions & 2 deletions aws/ecs/cloudformation.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@
"WeaveNetVersion": {
"Type": "String",
"Description": "Version of Weave Net to install",
"Default": "v1.8.1"
"Default": "v1.9.4"
},
"WeaveScopeVersion": {
"Type": "String",
"Description": "Version of Weave Scope to install",
"Default": "v1.1.0"
"Default": "v1.3.0"
}
},
"Conditions": {
Expand Down
6 changes: 3 additions & 3 deletions aws/ecs/packer/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@
"sudo yum -y install python-pip jq",
"sudo python-pip install awscli",

"sudo curl -L https://github.com/weaveworks/weave/releases/download/v1.8.1/weave -o /usr/local/bin/weave",
"sudo curl -L https://github.com/weaveworks/weave/releases/download/v1.9.4/weave -o /usr/local/bin/weave",
"sudo chmod +x /usr/local/bin/weave",
"sudo /usr/local/bin/weave setup",

"sudo curl -L https://github.com/weaveworks/scope/releases/download/v1.1.0/scope -o /usr/local/bin/scope",
"sudo curl -L https://github.com/weaveworks/scope/releases/download/v1.3.0/scope -o /usr/local/bin/scope",
"sudo chmod +x /usr/local/bin/scope",
"docker pull weaveworks/scope:1.1.0",
"docker pull weaveworks/scope:1.3.0",


"sudo mv /home/ec2-user/weave.conf /etc/init/weave.conf",
Expand Down