-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(13.4.0) INFRASYS-7486 Gives users the option to use autoscaling groups from cloudformation stack #30
Conversation
self.project = project.replace('-','') | ||
self.buildNum = buildNum | ||
self.buildNum = build_number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self.buildNum should be snake_case
35ad61a
to
eb593b5
Compare
faade63
to
56d5e94
Compare
AMI ID | ||
-P PROFILE, --profile PROFILE | ||
Profile name as designated in aws credentials/config | ||
files | ||
-c CONFIG, --config CONFIG | ||
Config file Location, eg. | ||
/opt/License2Deploy/config.yml | ||
-s STACK_NAME, --stack STACK_NAME | ||
Sack name if AutoScaling Group created via CloudFormation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stack
56d5e94
to
3ce366f
Compare
+1 |
3ce366f
to
1b16634
Compare
+1 |
return parser.parse_args() | ||
|
||
def main(): # pragma: no cover | ||
args = get_args() | ||
SetLogging.setup_logging() | ||
deployObj = RollingDeploy(args.env, args.project, args.buildNum, args.amiID, args.profile, args.config) | ||
deployObj = RollingDeploy(args.env, args.project, args.buildNum, args.amiID, args.profile, args.config, args.stack_name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did we want to change buildNum here (and in get_args) to build_number to be consistent?
One comment otherwise +1 |
1b16634
to
a6d7e26
Compare
…loudformation stack
a6d7e26
to
25fad7b
Compare
No description provided.