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 #197 from reactiveops/nh/fix-bug-gcp
Browse files Browse the repository at this point in the history
Added fix to missing arg
  • Loading branch information
ejether authored Apr 1, 2019
2 parents d8149a7 + 718d30d commit 0bee806
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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.4
### Fixes
- A required GCP start-project param was accidentally removed on a refactor of the CLI. Added it back.

## 3.1.3
### Changed
- Update dependencies
Expand Down
1 change: 1 addition & 0 deletions pentagon/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def cli(ctx, log_level, *args, **kwargs):
@click.option('--gcp-services-cidr', prompt=True, callback=validate_not_empty_string, help="Google GKE services CIDR.", cls=RequiredIf, required_if='cloud=gcp')
@click.option('--gcp-pods-cidr', prompt=True, callback=validate_not_empty_string, help="Google GKE pods CIDR.", cls=RequiredIf, required_if='cloud=gcp')
@click.option('--gcp-kubernetes-version', prompt=True, callback=validate_not_empty_string, help="Version of kubernetes to use for cluster nodes.", cls=RequiredIf, required_if='cloud=gcp')
@click.option('--gcp-infra-bucket', prompt=True, callback=validate_not_empty_string, help="The bucket where terraform will store its state for GCP.", cls=RequiredIf, required_if='cloud=gcp')
def start_project(ctx, name, **kwargs):
""" Create an infrastructure project from scratch with the configured options """

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.3"
__version__ = "3.1.4"
__author__ = 'ReactiveOps, Inc.'

0 comments on commit 0bee806

Please sign in to comment.