cockroachdb / cockroachdb-cloudformation

Quickly setup dev/test CockroachDB clusters using AWS CloudFormation and Kubernetes
https://www.cockroachlabs.com/
Apache License 2.0
12 stars 4 forks source link

Stop using hard coded 'latest' docker release #14

Closed nstewart closed 6 years ago

nstewart commented 6 years ago

Using cockroachdb/cockroach:latest broke the template when a new 1.0.x release was pushed to docker hub; the template assumed we would always get a release higher than 1.1.0. This fix hard codes the latest 1.1.x to prevent this from happening again.

Additionally, this sets the default cluster size to be a single t2.medium node to bring down the average cost of running CockroachDB. Multinode clusters should use M- nodes at the minimum.

Fixes #12