Skip to content

Commit

Permalink
fix: Remove email report functionality (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeacom authored Feb 21, 2023
1 parent 92bb069 commit 07ee04e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 333 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ eksupgrade --help

```sh
usage: eksupgrade [-h] [--pass_vpc] [--max_retry MAX_RETRY] [--force]
[--preflight] [--email EMAIL] [--parallel]
[--preflight] [--parallel]
[--log-level LOG_LEVEL] [--version]
name version region

Expand All @@ -132,7 +132,6 @@ optional arguments:
you can specify max retry or else by default it is 2
--force force pod eviction when you have pdb
--preflight Run pre-flight check without upgrade
--email EMAIL Email for sharing the preflight report
--parallel Upgrade all nodegroups in parallel
--log-level LOG_LEVEL
The log level to be displayed in the console.
Expand Down
1 change: 0 additions & 1 deletion eksupgrade/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def entry(args: Optional[List[str]] = None) -> None:
parser.add_argument("--max_retry", default=2, type=int, help="you can specify max retry or else by default it is 2")
parser.add_argument("--force", action="store_true", default=False, help="force pod eviction when you have pdb")
parser.add_argument("--preflight", action="store_true", default=False, help="Run pre-flight check without upgrade")
parser.add_argument("--email", default=False, help="Email for sharing the preflight report")
parser.add_argument("--parallel", action="store_true", default=False, help="Upgrade all nodegroups in parallel")
parser.add_argument(
"--log-level", default="INFO", help="The log level to be displayed in the console. Default to: INFO"
Expand Down
Loading

0 comments on commit 07ee04e

Please sign in to comment.