Merge remote-tracking branch 'origin/main' into mkdocs_automation

This commit is contained in:
Cian Hughes
2023-11-08 11:38:19 +00:00
7 changed files with 55 additions and 18 deletions

View File

@@ -31,6 +31,9 @@ CLEANUP_IMAGES = false
TESTING = true TESTING = true
CLEANUP_IMAGES = false CLEANUP_IMAGES = false
[default.typer]
no_args_is_help = true
[default.snoop.install] [default.snoop.install]
snoop = "ss" snoop = "ss"
out = "snoop.log" out = "snoop.log"

View File

@@ -22,7 +22,6 @@ fsspec = "^2023.10.0"
mkdocs-git-revision-date-localized-plugin = "^1.2.1" mkdocs-git-revision-date-localized-plugin = "^1.2.1"
mkdocs-material = {extras = ["all"], version = "^9.4.8"} mkdocs-material = {extras = ["all"], version = "^9.4.8"}
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
ruff = "^0.1.1" ruff = "^0.1.1"
black = "^23.10.1" black = "^23.10.1"

View File

@@ -1,5 +1,4 @@
from fnmatch import fnmatch from fnmatch import fnmatch
import ipaddress
from typing import Annotated, Optional from typing import Annotated, Optional
from docker.types import Mount from docker.types import Mount
@@ -9,14 +8,10 @@ from .cli import cli_spinner
from .config import config from .config import config
from .create_img import create_img from .create_img import create_img
from .debug import debug_guard from .debug import debug_guard
from .ip_interface import IPAddress
from .utils import ensure_build_dir from .utils import ensure_build_dir
# When PEP695 is supported this line should be:
# type IPAddress = ipaddress.IPv4Address | ipaddress.IPv6Address
IPAddress = ipaddress._IPAddressBase
def filter_validation_response(response: str) -> str: def filter_validation_response(response: str) -> str:
"""Filters out erroneous warnings from the validation response """Filters out erroneous warnings from the validation response
@@ -136,7 +131,7 @@ def create_ignition_disk(
"-ip", "-ip",
help="IP address of the switch to connect to", help="IP address of the switch to connect to",
prompt=True, prompt=True,
parser=ipaddress.ip_address, parser=IPAddress,
), ),
] = None, ] = None,
switch_port: Annotated[ switch_port: Annotated[

View File

@@ -1,4 +1,3 @@
import ipaddress
import json import json
from pathlib import Path from pathlib import Path
from typing import Annotated, Optional from typing import Annotated, Optional
@@ -9,12 +8,9 @@ from .autoignition import json_to_img
from .cli import cli_spinner from .cli import cli_spinner
from .config import config from .config import config
from .debug import debug_guard from .debug import debug_guard
from .ip_interface import IPAddress
from .utils import ensure_build_dir from .utils import ensure_build_dir
# When PEP695 is supported this line should be:
# type IPAddress = ipaddress.IPv4Address | ipaddress.IPv6Address
IPAddress = ipaddress._IPAddressBase
def load_template() -> dict: def load_template() -> dict:
"""Loads the default template for the ignition configuration """Loads the default template for the ignition configuration
@@ -121,7 +117,7 @@ def create_img(
"-ip", "-ip",
help="IP address of the switch to connect to", help="IP address of the switch to connect to",
prompt=True, prompt=True,
parser=ipaddress.ip_address, parser=IPAddress,
), ),
] = None, ] = None,
switch_port: Annotated[ switch_port: Annotated[

View File

@@ -44,7 +44,7 @@ def debug_guard(f: Callable) -> Callable:
debug_f = get_debug_f(f) debug_f = get_debug_f(f)
if kwargs.get("debug", False): if kwargs.get("debug", False):
# Snoop depth is set to compensate for wrapper stack frames # Snoop depth is set to compensate for wrapper stack frames
return debug_f(*args, **kwargs) # noqa: F821 #* ss is installed in debug_mode return debug_f(*args, **kwargs)
else: else:
return f(*args, **kwargs) return f(*args, **kwargs)

View File

@@ -0,0 +1,46 @@
from ipaddress import IPv4Address, IPv6Address, ip_address
class IPAddress:
def __init__(self, *args, **kwargs) -> None:
self.obj: IPv4Address | IPv6Address = ip_address(*args, **kwargs)
to_passthrough = (
"compressed",
"exploded",
"is_global",
"is_link_local",
"is_loopback",
"is_multicast",
"is_private",
"is_reserved",
"is_unspecified",
"max_prefixlen",
"packed",
"reverse_pointer",
"version",
)
for attrname in to_passthrough:
self._passthrough(attrname)
def _passthrough(self, attrname: str) -> None:
"""Passes through an attribute from the underlying IPv4Address or IPv6Address object
Args:
attrname (str): The name of the attribute to pass through
Raises:
AttributeError: If the attribute is a method
"""
attr = getattr(self.obj, attrname)
if callable(attr):
raise AttributeError(f"Passthrough is unavailable for methods ({attrname})")
setattr(self, attrname, attr)
def __str__(self) -> str:
return str(self.obj)
def __repr__(self) -> str:
return repr(self.obj)
def __bool__(self) -> bool:
return not self.obj.is_unspecified

View File

@@ -10,9 +10,7 @@ from .create_disk import create_ignition_disk
from .create_img import create_img from .create_img import create_img
cmd_params: Dict[Any, Any] = { cmd_params: Dict[Any, Any] = config.typer
"no_args_is_help": True,
}
app = typer.Typer( app = typer.Typer(
help="A tool for creating ignition images for automated deployment to a swarm", help="A tool for creating ignition images for automated deployment to a swarm",