mirror of
https://github.com/Cian-H/I-Form_Server_Node_Deployer.git
synced 2025-12-22 22:22:02 +00:00
18 lines
386 B
Python
18 lines
386 B
Python
#!/usr/bin/env python3
|
|
|
|
import typer
|
|
|
|
from create_img import create_img
|
|
from create_disk import create_ignition_disk
|
|
from autoignition import json_to_img
|
|
|
|
app = typer.Typer(
|
|
help="A tool for creating ignition images for automated deployment to a swarm"
|
|
)
|
|
|
|
app.command()(create_img)
|
|
app.command()(create_ignition_disk)
|
|
app.command()(json_to_img)
|
|
|
|
if __name__ == "__main__":
|
|
app() |