Skip to content

Commit

Permalink
prepare for 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ndegory committed Jul 6, 2017
1 parent 8e70341 commit 2e789f6
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.12.0-dev
0.12.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.11.0"
bootstrapTag = "0.12.0"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cli/command/cluster/remove.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func NewRemoveCommand(c cli.Interface) *cobra.Command {
},
}
flags := cmd.Flags()
flags.StringVarP(&opts.tag, "tag", "t", "0.10.1", "Specify tag for bootstrap images (default is '0.10.1', use 'local' for development)")
flags.StringVarP(&opts.tag, "tag", "t", c.Version(), "Specify tag for bootstrap images, use 'local' for development")
//flags.StringVar(&opts.provider, "provider", "local", "Cluster provider")
flags.StringVar(&opts.name, "name", "", "Cluster Label")
return cmd
Expand Down
2 changes: 1 addition & 1 deletion cli/command/cluster/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func NewStatusCommand(c cli.Interface) *cobra.Command {
}
flags := cmd.Flags()
//flags.StringVar(&opts.provider, "provider", "local", "Cluster provider")
flags.StringVarP(&opts.tag, "tag", "t", "0.10.1", "Specify tag for bootstrap images (default is '0.10.1', use 'local' for development)")
flags.StringVarP(&opts.tag, "tag", "t", c.Version(), "Specify tag for bootstrap images (default is '0.12.0', use 'local' for development)")
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.11.0 )
TAGS=( latest 0.12.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 @@ -17,7 +17,7 @@ secrets:
services:

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

gateway:
image: appcelerator/gateway:${TAG:-0.11.0}
image: appcelerator/gateway:${TAG:-0.12.0}
networks:
default:
aliases:
Expand All @@ -70,7 +70,7 @@ services:
- node.labels.amp.type.core == true

agent:
image: appcelerator/agent:${TAG:-0.11.0}
image: appcelerator/agent:${TAG:-0.12.0}
networks:
default:
aliases:
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.11.0}
image: appcelerator/ampbeat:${TAG:-0.12.0}
networks:
default:
aliases:
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:-latest}
image: appcelerator/amp-prometheus:${TAG:-0.12.0}
networks:
default:
aliases:
Expand Down
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:latest
image: appcelerator/portal:${TAG:-0.12.0}
networks:
- default
deploy:
Expand Down

0 comments on commit 2e789f6

Please sign in to comment.