Skip to content

Commit

Permalink
prepare for 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ndegory committed Jul 26, 2017
1 parent 8d7dc60 commit d0a41ba
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.13.1 (2017-07-25)

* gRPC timeout in the CLI raised from 1sec to 10sec (fix timeout with remote clusters)
* A non verified user can be deleted
* Docker Plugin can now be installed with options

## 0.13.0 (2017-07-25)

* HA and self healing Cluster deployment on AWS
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0-dev
0.13.1
2 changes: 1 addition & 1 deletion cli/command/cluster/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

const (
bootstrapImg = "appcelerator/amp-bootstrap:%s"
bootstrapTag = "0.13.0"
bootstrapTag = "0.13.1"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cluster/agent/stacks/02-ampbeat.amp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ networks:
services:

ampbeat:
image: appcelerator/ampbeat:${TAG:-0.13.0}
image: appcelerator/ampbeat:${TAG:-0.13.1}
networks:
- default
deploy:
Expand Down
2 changes: 1 addition & 1 deletion cluster/agent/stacks/05-prometheus.amp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ configs:
services:

prometheus:
image: appcelerator/amp-prometheus:${TAG:-0.13.0}
image: appcelerator/amp-prometheus:${TAG:-0.13.1}
networks:
- default
volumes:
Expand Down
2 changes: 1 addition & 1 deletion cluster/agent/stacks/09-amplifier.amp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ secrets:
services:

amplifier:
image: appcelerator/amplifier:${TAG:-0.13.0}
image: appcelerator/amplifier:${TAG:-0.13.1}
networks:
- default
environment:
Expand Down
2 changes: 1 addition & 1 deletion cluster/agent/stacks/10-gateway.amp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ networks:
services:

gateway:
image: appcelerator/gateway:${TAG:-0.13.0}
image: appcelerator/gateway:${TAG:-0.13.1}
networks:
- default
labels:
Expand Down
2 changes: 1 addition & 1 deletion cluster/agent/stacks/11-agent.amp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ volumes:
services:

agent:
image: appcelerator/agent:${TAG:-0.13.0}
image: appcelerator/agent:${TAG:-0.13.1}
networks:
- default
deploy:
Expand Down
2 changes: 1 addition & 1 deletion cluster/plugin/aws/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

const (
DefaultTemplateURL = "https://s3.amazonaws.com/io-amp-binaries/templates/v0.13.0/aws-swarm-asg.yml"
DefaultTemplateURL = "https://s3.amazonaws.com/io-amp-binaries/templates/v0.13.1/aws-swarm-asg.yml"
)

// RequestOptions stores raw request input options before transformation into a AWS SDK specific
Expand Down
4 changes: 2 additions & 2 deletions examples/clusters/aws-swarm-asg.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AWSTemplateFormatVersion: '2010-09-09'
Description: Swarm cluster with autoscaling groups v0.14.0-dev
Description: Swarm cluster with autoscaling groups v0.13.1

Mappings:
AMI:
Expand Down Expand Up @@ -236,7 +236,7 @@ Parameters:
ApplicationVersion:
Type: String
Description: Use the latest release version for the best result (a tag, e.g. 0.13.1)
Default: latest
Default: 0.13.1
MirrorRegistry:
Type: String
Description: If yes, a mirror registry will be installed
Expand Down
6 changes: 3 additions & 3 deletions platform/stacks/amp.stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ secrets:
services:

amplifier:
image: appcelerator/amplifier:${TAG:-0.13.0}
image: appcelerator/amplifier:${TAG:-0.13.1}
networks:
- default
environment:
Expand Down Expand Up @@ -47,7 +47,7 @@ services:
mode: 0400

gateway:
image: appcelerator/gateway:${TAG:-0.13.0}
image: appcelerator/gateway:${TAG:-0.13.1}
networks:
- default
labels:
Expand All @@ -66,7 +66,7 @@ services:
- node.labels.amp.type.core == true

agent:
image: appcelerator/agent:${TAG:-0.13.0}
image: appcelerator/agent:${TAG:-0.13.1}
networks:
- default
deploy:
Expand Down
2 changes: 1 addition & 1 deletion platform/stacks/ampmon.2.stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ networks:
services:

ampbeat:
image: appcelerator/ampbeat:${TAG:-0.13.0}
image: appcelerator/ampbeat:${TAG:-0.13.1}
networks:
- default
deploy:
Expand Down
2 changes: 1 addition & 1 deletion platform/stacks/ampmon.3.stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
"-web.external-url=http://localhost:9093" ]

prometheus:
image: appcelerator/amp-prometheus:${TAG:-0.13.0}
image: appcelerator/amp-prometheus:${TAG:-0.13.1}
networks:
- default
volumes:
Expand Down

0 comments on commit d0a41ba

Please sign in to comment.