Skip to content

Commit

Permalink
prepare for 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ndegory committed Nov 16, 2017
1 parent 6904b57 commit 19fe1d7
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.0-dev
0.16.0
2 changes: 1 addition & 1 deletion cli/command/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ var (
workers: 2,
provider: "local",
name: "",
tag: "latest",
tag: "0.16.0",
registration: configuration.RegistrationDefault,
notifications: true,
}
Expand Down
4 changes: 2 additions & 2 deletions cluster/ampagent/stacks/cluster/01-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ services:
- node.labels.amp.type.kv == true

amplifier:
image: appcelerator/amplifier:${TAG:-0.15.0}
image: appcelerator/amplifier:${TAG:-0.16.0}
networks:
- core
- monit
Expand Down Expand Up @@ -88,7 +88,7 @@ services:
mode: 0400

gateway:
image: appcelerator/gateway:${TAG:-0.15.0}
image: appcelerator/gateway:${TAG:-0.16.0}
networks:
- core
- public
Expand Down
4 changes: 2 additions & 2 deletions cluster/ampagent/stacks/cluster/02-logs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ services:
- node.labels.amp.type.mq == true

ampbeat:
image: appcelerator/ampbeat:${TAG:-0.15.0}
image: appcelerator/ampbeat:${TAG:-0.16.0}
networks:
- core
deploy:
Expand Down Expand Up @@ -108,7 +108,7 @@ services:
VIRTUAL_HOST: "http://kibana.*,https://kibana.*"

agent:
image: appcelerator/agent:${TAG:-0.15.0}
image: appcelerator/agent:${TAG:-0.16.0}
networks:
- core
deploy:
Expand Down
2 changes: 1 addition & 1 deletion cluster/ampagent/stacks/cluster/03-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ secrets:
services:

prometheus:
image: appcelerator/amp-prometheus:${TAG:-0.15.0}
image: appcelerator/amp-prometheus:${TAG:-0.16.0}
networks:
- public
- monit
Expand Down
4 changes: 2 additions & 2 deletions cluster/ampagent/stacks/single/01-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
- node.labels.amp.type.kv == true

amplifier:
image: appcelerator/amplifier:${TAG:-0.15.0}
image: appcelerator/amplifier:${TAG:-0.16.0}
networks:
- core
- monit
Expand Down Expand Up @@ -81,7 +81,7 @@ services:
mode: 0400

gateway:
image: appcelerator/gateway:${TAG:-0.15.0}
image: appcelerator/gateway:${TAG:-0.16.0}
networks:
- core
- public
Expand Down
4 changes: 2 additions & 2 deletions cluster/ampagent/stacks/single/02-logs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:
- node.labels.amp.type.mq == true

ampbeat:
image: appcelerator/ampbeat:${TAG:-0.15.0}
image: appcelerator/ampbeat:${TAG:-0.16.0}
networks:
- core
deploy:
Expand Down Expand Up @@ -99,7 +99,7 @@ services:
VIRTUAL_HOST: "http://kibana.*,https://kibana.*"

agent:
image: appcelerator/agent:${TAG:-0.15.0}
image: appcelerator/agent:${TAG:-0.16.0}
networks:
- core
deploy:
Expand Down
2 changes: 1 addition & 1 deletion cluster/ampagent/stacks/single/03-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ secrets:
services:

prometheus:
image: appcelerator/amp-prometheus:${TAG:-0.15.0}
image: appcelerator/amp-prometheus:${TAG:-0.16.0}
networks:
- public
- monit
Expand Down
3 changes: 2 additions & 1 deletion cluster/plugin/aws/plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import (

const (
// replace latest by the version when releasing the plugin
DefaultTemplateURL = "https://s3.amazonaws.com/io-amp-binaries/templates/latest/aws-swarm-asg.yml"
//DefaultTemplateURL = "https://s3.amazonaws.com/io-amp-binaries/templates/latest/aws-swarm-asg.yml"
DefaultTemplateURL = "https://s3.amazonaws.com/io-amp-binaries/templates/v0.16.0/aws-swarm-asg.yml"
)

// RequestOptions stores raw request input options before transformation into a AWS SDK specific
Expand Down
6 changes: 3 additions & 3 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.16.0-dev
Description: Swarm cluster with autoscaling groups v0.16.0

Mappings:
AMI:
Expand Down Expand Up @@ -200,8 +200,8 @@ Parameters:
Default: yes
ApplicationVersion:
Type: String
Description: Use the latest release version for the best result (a tag, e.g. 0.15.0)
Default: latest
Description: Use the latest release version for the best result (a tag, e.g. 0.16.0)
Default: 0.16.0
MirrorRegistry:
Type: String
Description: If yes, a mirror registry will be installed
Expand Down

0 comments on commit 19fe1d7

Please sign in to comment.