node_deployer.create_disk
create_ignition_disk(disk=None, hostname='node', password=None, switch_ip=None, switch_port=4789, swarm_token=None, debug=False)
Creates an ignition image and writes it to the specified disk
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
disk |
Annotated[ str, typer.Option
|
The disk to write to. Defaults to None. |
None
|
hostname |
Annotated[ str, typer.Option
|
The hostname for the new node. Defaults to "node". |
'node'
|
password |
Annotated[ str, typer.Option
|
The password for the root user on the new 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
|
debug |
Annotated[ bool, typer.Option
|
Enable debug mode. Defaults to False. |
False
|
Raises:
| Type | Description |
|---|---|
Exit
|
Exit CLI if the ignition image is invalid |
Source code in src/node_deployer/create_disk.py
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 | |
filter_validation_response(response)
Filters out erroneous warnings from the validation response
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
response |
str
|
The response to filter |
required |
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The filtered response |
Source code in src/node_deployer/create_disk.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
validate()
Validates the ignition image
Returns:
| Type | Description |
|---|---|
bool
|
tuple[bool, str]: A tuple containing a boolean indicating whether |
str
|
the validation was successful and the response from the validation |
Source code in src/node_deployer/create_disk.py
65 66 67 68 69 70 71 72 73 74 75 | |
validation_result()
Returns the response resulting from a validation of the ignition image
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The response from the validation |
Source code in src/node_deployer/create_disk.py
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 | |
write_disk(disk)
Writes the ignition image to the specified disk
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
disk |
str
|
The disk to write to |
required |
Source code in src/node_deployer/create_disk.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 | |
Created: November 1, 2023