Skip to content
This repository has been archived by the owner on Apr 13, 2019. It is now read-only.

Commit

Permalink
Merge pull request #194 from reactiveops/bb/node-count-fix
Browse files Browse the repository at this point in the history
Fix node_count default
  • Loading branch information
ejether authored Mar 21, 2019
2 parents 1131789 + 27c579d commit 7040c7d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 3.1.2
### Fixed
- Changed `defaults.node_count` from 3 to 1, so that only 3 total nodes (one per `InstanceGroup`) are created

## 3.1.1
## Fixed
### Fixed
- In certain cases a migration would cause duplicate hooks
- In certain cases, migrations were not run because kops.sh had been deleted

Expand Down
2 changes: 1 addition & 1 deletion pentagon/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class AWSPentagonDefaults(object):
'network_mask': 24,
'networking': {'flannel': {'backend': 'vxlan'}},
'node_additional_policies': '[{"Effect": "Allow","Action": ["autoscaling:DescribeAutoScalingGroups", "autoscaling:DescribeAutoScalingInstances", "autoscaling:DescribeTags", "autoscaling:SetDesiredCapacity", "autoscaling:TerminateInstanceInAutoScalingGroup"],"Resource": "*"}]',
'node_count': 3,
'node_count': 1,
'node_root_volume_size': 200,
'production_third_octet': 16,
'ssh_key_path': '~/.ssh/id_rsa.pub',
Expand Down
2 changes: 1 addition & 1 deletion pentagon/meta.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "3.1.1"
__version__ = "3.1.2"
__author__ = 'ReactiveOps, Inc.'

0 comments on commit 7040c7d

Please sign in to comment.