@@ -17,8 +17,8 @@ Arguments
1717
1818 Names of the Raspberry Pi servers to provision
1919
20- If no names are provided, a generated name will be generated. Use in combination with
21- :option: ` --number ` to create multiple servers with generated names.
20+ If no names are provided, a name will be generated. Use in combination with :option: ` --number `
21+ to create multiple servers with generated names.
2222
2323Options
2424=======
@@ -58,9 +58,6 @@ Options
5858
5959 Wait and poll for status to be available before returning
6060
61- Supply with :option: `--full ` to show the full table of Raspberry Pi server info when the server
62- is provisioned
63-
6461.. option :: --ssh-key-path [path]
6562
6663 Path to the SSH key to install on the Raspberry Pi server
@@ -77,12 +74,6 @@ Options
7774
7875 Can be provided multiple times
7976
80- .. option :: --full
81-
82- Show full table of Raspberry Pi server info when the server is provisioned
83-
84- Can only provided along with :option: `--wait `
85-
8677.. option :: --help
8778
8879 Show this message and exit
@@ -95,30 +86,23 @@ Provision a new Pi 3 using the default Pi 3 spec, and wait for it to be provisio
9586.. code-block :: console
9687
9788 $ hostedpi create mypi --model 3 --wait
98- Server provisioned
99- ┏━━━━━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┓
100- ┃ Name ┃ Model ┃ Memory ┃ CPU Speed ┃
101- ┡━━━━━━━╇━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━┩
102- │ mypi │ 3 │ 1 GB │ 1.2 GHz │
103- └───────┴───────┴────────┴───────────┘
89+ ┏━━━━━━┳━━━━━━━━━━━━━┓
90+ ┃ Name ┃ Status ┃
91+ ┡━━━━━━╇━━━━━━━━━━━━━┩
92+ │ mypi │ Provisioned │
93+ └──────┴─────────────┘
10494
10595 Provision two new Pi 4 servers with generated names, using the default Pi 4 spec:
10696
10797.. code-block :: console
10898
10999 $ hostedpi create --model 4 --number 2 --wait
110- Server provisioned
111- ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┓
112- ┃ Name ┃ Model ┃ Memory ┃ CPU Speed ┃
113- ┡━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━┩
114- │ c8046pxjf │ 4 │ 4 GB │ 1.5 GHz │
115- └───────────┴───────┴────────┴───────────┘
116- Server provisioned
117- ┏━━━━━━━━━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┓
118- ┃ Name ┃ Model ┃ Memory ┃ CPU Speed ┃
119- ┡━━━━━━━━━━━╇━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━┩
120- │ c8046pg5e │ 4 │ 4 GB │ 1.5 GHz │
121- └───────────┴───────┴────────┴───────────┘
100+ ┏━━━━━━━━━━━┳━━━━━━━━━━━━━┓
101+ ┃ Name ┃ Status ┃
102+ ┡━━━━━━━━━━━╇━━━━━━━━━━━━━┩
103+ │ c8046pxjf │ Provisioned │
104+ │ c8046pg5e │ Provisioned │
105+ └───────────┴─────────────┘
122106
123107 .. warning ::
124108 If no :option: `names ` are provided, and :option: `--wait ` is not provided, the command will return
@@ -129,12 +113,11 @@ Provision a new Pi 4 using custom settings:
129113.. code-block :: console
130114
131115 $ hostedpi create mypi4 --model 4 --memory 8192 --cpu-speed 2000 --disk 60 --os-image rpi-jammy-arm64 --ssh-key-path ~/.ssh/id_rsa.pub --wait
132- Server provisioned
133- ┏━━━━━━━┳━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━┓
134- ┃ Name ┃ Model ┃ Memory ┃ CPU Speed ┃
135- ┡━━━━━━━╇━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━┩
136- │ mypi4 │ 4 │ 8 GB │ 2.0 GHz │
137- └───────┴───────┴────────┴───────────┘
116+ ┏━━━━━━━┳━━━━━━━━━━━━━┓
117+ ┃ Name ┃ Status ┃
118+ ┡━━━━━━━╇━━━━━━━━━━━━━┩
119+ │ mypi4 │ Provisioned │
120+ └───────┴─────────────┘
138121
139122 .. note ::
140123
0 commit comments