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 | |
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 | |
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 | |
Created: November 1, 2023