Skip to content

node_deployer.create_img

apply_ignition_settings(template, hostname, password, swarm_config)

Applies the specified ignition settings to the given template

Parameters:

Name Type Description Default
template dict

The template to apply the settings to

required
hostname str

The hostname to set

required
password str

The password to set for the root user

required
swarm_config str

The swarm configuration to set

required

Returns:

Name Type Description
dict dict

The template with the settings applied

Source code in src/node_deployer/create_img.py
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
def apply_ignition_settings(
    template: dict,
    hostname: str,
    password: str,
    swarm_config: dict,
) -> dict:
    """Applies the specified ignition settings to the given template

    Args:
        template (dict): The template to apply the settings to
        hostname (str): The hostname to set
        password (str): The password to set for the root user
        swarm_config (str): The swarm configuration to set

    Returns:
        dict: The template with the settings applied
    """
    ignition_config = template.copy()
    ignition_config["hostname"] = hostname
    ignition_config["login"]["users"][0]["passwd"] = password
    if password:
        ignition_config["login"]["users"][0]["hash_type"] = "bcrypt"
    elif not config.TESTING:
        raise ValueError("Password must be specified")

    # Add files that will define a service to ensure that the node joins the swarm
    with open(config.SRC_DIR / "templates/join_swarm.sh", "r") as f1, open(
        config.SRC_DIR / "templates/join_swarm.service", "r"
    ) as f2:
        swarm_script, swarm_service = f1.read(), f2.read()

    ignition_config["storage"] = ignition_config.get("storage", {})
    ignition_config["storage"]["files"] = ignition_config["storage"].get("files", [])
    ignition_config["storage"]["files"] += [
        {
            "path": "/root/join_swarm.json",
            "source_type": "data",
            "mode": 420,
            "overwrite": True,
            "data_content": json.dumps(swarm_config),
        },
        {
            "path": "/root/join_swarm.sh",
            "source_type": "data",
            "mode": 420,
            "overwrite": True,
            "data_content": swarm_script,
        },
    ]

    ignition_config["systemd"] = ignition_config.get("systemd", {})
    ignition_config["systemd"]["units"] = ignition_config["systemd"].get("units", [])
    ignition_config["systemd"]["units"] += [
        {
            "name": "join_swarm.service",
            "enabled": True,
            "contents": swarm_service,
        },
    ]

    return ignition_config

create_img(hostname='node', password=None, switch_ip=None, switch_port=4789, swarm_token=None, img_path=Path('ignition.img'), debug=False)

Creates an ignition image for a node that will automatically join a swarm

Parameters:

Name Type Description Default
hostname Annotated[ str, typer.Option

The hostname to set for the node. Defaults to "node".

'node'
password Annotated[ str, typer.Option

The password to set for the root user on the node. Defaults to None.

None
switch_ip Annotated[ IPAddress, typer.Option

The IP address of the switch to connect to. Defaults to None.

None
switch_port Annotated[ int, typer.Option

The port on the switch to connect to. Defaults to 4789.

4789
swarm_token Annotated[ str, typer.Option

The swarm token for connecting to the swarm. Defaults to None.

None
img_path Annotated[ Path, typer.Option

The path to which the ignition image should be written. Defaults to Path("ignition.img").

Path('ignition.img')
debug Annotated[ bool, typer.Option

Enable debug mode. Defaults to False.

False
Source code in src/node_deployer/create_img.py
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
@debug_guard
@cli_spinner(description="Creating ignition image", total=None)
@ensure_build_dir
def create_img(
    hostname: Annotated[
        str,
        typer.Option(
            "--hostname",
            "-h",
            help="Hostname for the new node",
            prompt=True,
        ),
    ] = "node",
    password: Annotated[
        Optional[str],
        typer.Option(
            "--password",
            "-p",
            help="Password for the root user on the new node",
            prompt=True,
            confirmation_prompt=True,
            hide_input=True,
        ),
    ] = None,
    switch_ip: Annotated[
        Optional[IPAddress],
        typer.Option(
            "--switch-ip",
            "-ip",
            help="IP address of the switch to connect to",
            prompt=True,
            parser=IPAddress,
        ),
    ] = None,
    switch_port: Annotated[
        int,
        typer.Option(
            "--switch-port",
            "-sp",
            help="Port on the switch to connect to",
            prompt=True,
            min=1,
            max=config.MAX_PORT,
        ),
    ] = 4789,
    swarm_token: Annotated[
        Optional[str],
        typer.Option(
            "--swarm-token",
            "-t",
            help="Swarm token for connecting to the swarm",
            prompt=True,
        ),
    ] = None,
    img_path: Annotated[
        Path,
        typer.Option(
            "--img-path",
            "-o",
            help="Path to which the ignition image should be written",
            dir_okay=False,
        ),
    ] = Path("ignition.img"),
    debug: Annotated[
        bool,
        typer.Option(
            "--debug",
            help="Enable debug mode",
            is_eager=True,
            is_flag=True,
            flag_value=True,
            hidden=not config.DEBUG,
        ),
    ] = False,
) -> None:
    """Creates an ignition image for a node that will automatically join a swarm

    Args:
        hostname (Annotated[ str, typer.Option, optional):
            The hostname to set for the node.
            Defaults to "node".
        password (Annotated[ str, typer.Option, optional):
            The password to set for the root user on the node.
            Defaults to None.
        switch_ip (Annotated[ IPAddress, typer.Option, optional):
            The IP address of the switch to connect to.
            Defaults to None.
        switch_port (Annotated[ int, typer.Option, optional):
            The port on the switch to connect to.
            Defaults to 4789.
        swarm_token (Annotated[ str, typer.Option, optional):
            The swarm token for connecting to the swarm.
            Defaults to None.
        img_path (Annotated[ Path, typer.Option, optional):
            The path to which the ignition image should be written.
            Defaults to Path("ignition.img").
        debug (Annotated[ bool, typer.Option, optional):
            Enable debug mode.
            Defaults to False.
    """
    # Guards against the user not specifying a password
    if password is None and not config.TESTING:
        raise typer.BadParameter("Password must be specified")
    elif password is None:
        password = ""

    # get swarm configuration as JSON
    swarm_config = {
        "SWITCH_IP_ADDRESS": str(switch_ip),
        "SWITCH_PORT": switch_port,
        "SWARM_TOKEN": swarm_token,
    }

    # Create ignition configuration
    ignition_config = apply_ignition_settings(
        load_template(),
        hostname,
        password,
        swarm_config,
    )

    # export ignition configuration
    with open(config.BUILD_DIR / "fuelignition.json", "w") as f:
        json.dump(ignition_config, f, indent=4)

    # convert ignition configuration to image
    json_to_img(
        json_path=config.BUILD_DIR / "fuelignition.json",
        img_path=img_path,
        debug=debug,
    )

load_template()

Loads the default template for the ignition configuration

Returns:

Name Type Description
dict dict

The default ignition configuration

Source code in src/node_deployer/create_img.py
15
16
17
18
19
20
21
22
23
def load_template() -> dict:
    """Loads the default template for the ignition configuration

    Returns:
        dict: The default ignition configuration
    """
    with open(config.SRC_DIR / "templates/fuelignition.json", "r") as f:
        out = json.load(f)
    return out

Last update: November 7, 2023
Created: November 1, 2023