Skip to content

Commit

Permalink
prepare for 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ndegory committed May 22, 2017
1 parent 0a5cf77 commit f7e0520
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.11.0-dev
v0.11.0
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.10.1"
bootstrapTag = "0.11.0"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cli/command/cluster/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func NewCreateCommand(c cli.Interface) *cobra.Command {
flags.IntVarP(&opts.managers, "managers", "m", 3, "Intial number of manager nodes")
flags.StringVar(&opts.provider, "provider", "local", "Cluster provider")
flags.StringVar(&opts.name, "name", "", "Cluster Label")
flags.StringVarP(&opts.tag, "tag", "t", "0.10.1", "Specify tag for cluster images (default is '0.10.1', use 'local' for development)")
flags.StringVarP(&opts.tag, "tag", "t", "0.11.0", "Specify tag for cluster images (default is '0.11.0', use 'local' for development)")
flags.StringVarP(&opts.registration, "registration", "r", configuration.RegistrationNone, "Specify the registration policy (default is 'none', possible values are 'none' or 'email')")
flags.BoolVarP(&opts.notifications, "notifications", "n", false, "Enable/disable server notifications (default is 'false')")
return cmd
Expand Down
2 changes: 1 addition & 1 deletion platform/build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e

TAGS=( latest 0.10.1 )
TAGS=( latest 0.11.0 )
OWNER=appcelerator
IMAGE="${1:-amp-bootstrap}"

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 @@ -15,7 +15,7 @@ secrets:
services:

amplifier:
image: appcelerator/amplifier:${TAG:-0.10.1}
image: appcelerator/amplifier:${TAG:-0.11.0}
networks:
default:
aliases:
Expand Down Expand Up @@ -43,7 +43,7 @@ services:
mode: 0400

amplifier-gateway:
image: appcelerator/amplifier-gateway:${TAG:-0.10.1}
image: appcelerator/amplifier-gateway:${TAG:-0.11.0}
networks:
default:
aliases:
Expand All @@ -64,7 +64,7 @@ services:
- node.role == ${NODE_ROLE:-worker}

agent:
image: appcelerator/agent:${TAG:-0.10.1}
image: appcelerator/agent:${TAG:-0.11.0}
networks:
default:
aliases:
Expand Down
4 changes: 2 additions & 2 deletions 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.10.1}
image: appcelerator/ampbeat:${TAG:-0.11.0}
networks:
default:
aliases:
Expand All @@ -25,7 +25,7 @@ services:
io.amp.role: "infrastructure"

kibana:
image: appcelerator/kibana:5.3.1
image: appcelerator/kibana:5.3.2
networks:
default:
aliases:
Expand Down
9 changes: 7 additions & 2 deletions platform/stacks/ampproxy.stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ networks:
name: ampnet

secrets:
certificate_atomiq:
certificate_appcelerator:
external: true
certificate_atomiq_fc:
external: true

services:
Expand All @@ -32,6 +34,9 @@ services:
- "443:443"
- "1936:1936"
secrets:
- source: certificate_atomiq
- source: certificate_atomiq_fc
target: cert0.pem
mode: 0400
- source: certificate_appcelerator
target: cert1.pem
mode: 0400
2 changes: 1 addition & 1 deletion platform/stacks/portal.stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ networks:
services:

portal:
image: appcelerator/portal:${TAG:-0.10.1}
image: appcelerator/portal:${TAG:-0.11.0}
networks:
- default
deploy:
Expand Down

0 comments on commit f7e0520

Please sign in to comment.