-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: Add support for us region to replace saas #60
base: main
Are you sure you want to change the base?
Conversation
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.
LGTM, one suggestion
@@ -38,7 +38,7 @@ | |||
You may specify up to {TTL_MAX} and as low as {TTL_MIN}. | |||
""" | |||
) | |||
@click.argument("customer", default="saas") |
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.
Lets remove this default.
if ( | ||
customer != "saas" | ||
and customer != "test-control" | ||
and customer != "de" | ||
and customer != "us" | ||
): |
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.
Seems this should be a flag in the config .
@@ -200,7 +200,7 @@ def run_pod( | |||
): | |||
customer_name = ctx.obj.customer_name | |||
|
|||
if customer_name == "saas" or customer_name == "de": | |||
if customer_name == "saas" or customer_name == "de" or customer_name == "us": |
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.
Same, this should be a config flag.
No description provided.