Skip to content
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

AKS-Preview CLI extension default to SLB+VMSS #906

Merged
merged 29 commits into from
Aug 27, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix check style
  • Loading branch information
Tony Xu committed Aug 17, 2019
commit 944dcde684d2c6648b2f25dcf63a3ead1f145706
7 changes: 4 additions & 3 deletions src/aks-preview/azext_aks_preview/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@
import time
import uuid
import webbrowser
import yaml # pylint: disable=import-error
import requests # pylint: disable=import-error

from ipaddress import ip_network
from distutils.version import StrictVersion # pylint: disable=import-error
from six.moves.urllib.request import urlopen # pylint: disable=import-error
from six.moves.urllib.error import URLError # pylint: disable=import-error
import requests
from knack.log import get_logger
from knack.util import CLIError
from knack.prompting import prompt_pass, NoTTYException

import yaml # pylint: disable=import-error
import dateutil.parser # pylint: disable=import-error
from dateutil.relativedelta import relativedelta # pylint: disable=import-error
from dateutil.parser import parser # pylint: disable=import-error
from msrestazure.azure_exceptions import CloudError
Expand Down