summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorПавел Жуков <33721692+LeaveMyYard@users.noreply.github.com>2023-03-26 20:36:08 +0300
committerПавел Жуков <33721692+LeaveMyYard@users.noreply.github.com>2023-03-26 20:36:08 +0300
commita7e137633e895c0f167262c20fa409fccc4202e5 (patch)
tree61c60604d0ac2019437befb06c5deb7ce005d217
parenteffa3de244f9bcd6f5abb5a9da4d1f8a437383bf (diff)
Change KRR to KubeKraken
-rw-r--r--README.md4
-rw-r--r--robusta_krr/main.py2
-rw-r--r--robusta_krr/utils/logo.py12
3 files changed, 9 insertions, 9 deletions
diff --git a/README.md b/README.md
index 3fba918..5533b76 100644
--- a/README.md
+++ b/README.md
@@ -13,9 +13,9 @@
<a href="https://github.com/robusta/robusta-krr">
<img src="images/logo.png" alt="Logo" width="320" height="320">
</a>
- <h3 align="center">Robusta-KRR</h3>
+ <h3 align="center">Robusta's KubeKraken</h3>
<p align="center">
- Robusta's Kubernetes Resource Recommender
+ Prometheus-based Kubernetes Resource Recommendations
<br />
<a href="https://github.com/robusta/robusta-krr"><strong>Explore the docs »</strong></a>
<br />
diff --git a/robusta_krr/main.py b/robusta_krr/main.py
index f130259..48a415e 100644
--- a/robusta_krr/main.py
+++ b/robusta_krr/main.py
@@ -53,7 +53,7 @@ for strategy_name, strategy_type in BaseStrategy.get_all().items(): # type: ign
quiet: bool = typer.Option(False, "--quiet", "-q", help="Enable quiet mode", rich_help_panel="Logging Settings"),
{strategy_settings},
) -> None:
- '''Run KRR using the `{func_name}` strategy'''
+ '''Run KubeKraken using the `{func_name}` strategy'''
config = Config(
prometheus_url=prometheus_url,
diff --git a/robusta_krr/utils/logo.py b/robusta_krr/utils/logo.py
index a6b9641..a35f05c 100644
--- a/robusta_krr/utils/logo.py
+++ b/robusta_krr/utils/logo.py
@@ -1,11 +1,11 @@
ASCII_LOGO = r"""
[bold magenta]
- _____ _ _ _ _______ _____
- | __ \ | | | | | |/ / __ \| __ \
- | |__) |___ | |__ _ _ ___| |_ __ _ | ' /| |__) | |__) |
- | _ // _ \| '_ \| | | / __| __/ _` | | < | _ /| _ /
- | | \ \ (_) | |_) | |_| \__ \ || (_| | | . \| | \ \| | \ \
- |_| \_\___/|_.__/ \__,_|___/\__\__,_| |_|\_\_| \_\_| \_\
+ _ __ _ _ __ _
+| | / / | | | | / / | |
+| |/ / _ _| |__ ___| |/ / _ __ __ _| | _____ _ __
+| \| | | | '_ \ / _ \ \| '__/ _` | |/ / _ \ '_ \
+| |\ \ |_| | |_) | __/ |\ \ | | (_| | < __/ | | |
+\_| \_/\__,_|_.__/ \___\_| \_/_| \__,_|_|\_\___|_| |_|
[/bold magenta]
"""