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

fix issue with k3s being selected on macOS; fix ugly green color for bitwarden tui credentials prompt; bump pyproject.toml version for new version of deptry #171

Merged
merged 3 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/assets/images/screenshots/help_text.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "smol_k8s_lab"
version = "3.0.0"
version = "3.0.1"
description = "CLI and TUI to quickly install slimmer Kubernetes distros and then manage apps declaratively using Argo CD"
authors = ["Jesse Hitch <[email protected]>",
"Max Roby <[email protected]>"]
Expand Down
1 change: 1 addition & 0 deletions smol_k8s_lab/bitwarden/tui/bitwarden.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ $navy: rgb(35,35,54);
content-align: center middle;
padding: 1;
border: round $cornflower;
border-title-color: $soft_green;
grid-gutter: 1;
grid-rows: 0.25fr 1fr 0.25fr;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def compose(self) -> ComposeResult:

def on_mount(self,) -> None:
credentials_box = self.get_widget_by_id("credentials-box")
credentials_box.border_title = "[green]🛡️ Enter Bitwarden Vault Credentials"
credentials_box.border_title = "🛡️ Enter Bitwarden Vault Credentials"

# we set this at the beginning, so we can still return empty if they cancel
self.credentials = {}
Expand Down
3 changes: 2 additions & 1 deletion smol_k8s_lab/tui/distro_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ def on_mount(self) -> None:
main_box.mount(
K3sConfigWidget(
self.current_distro,
self.cfg.get('k3s', DEFAULT_DISTRO_OPTIONS['k3s']),
self.cfg.get(self.current_distro,
DEFAULT_DISTRO_OPTIONS[self.current_distro]),
id=self.current_distro + "-pseudo-screen"
)
)
Expand Down