1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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
|
from __future__ import annotations
from os import environ
from hcloud import Client
from hcloud.images import Image
from hcloud.server_types import ServerType
from hcloud.servers import Server
from hcloud.volumes import Volume
assert (
"HCLOUD_TOKEN" in environ
), "Please export your API token in the HCLOUD_TOKEN environment variable"
token = environ["HCLOUD_TOKEN"]
client = Client(token=token)
# Create 2 servers
response1 = client.servers.create(
name="Server1", server_type=ServerType(name="cx22"), image=Image(id=4711)
)
response2 = client.servers.create(
"Server2", server_type=ServerType(name="cx22"), image=Image(id=4711)
)
server1 = response1.server
server2 = response2.server
# Get all servers
servers = client.servers.get_all()
assert servers[0].id == server1.id
assert servers[1].id == server2.id
# Create 2 volumes
response1 = client.volumes.create(size=15, name="Volume1", location=server1.location)
response2 = client.volumes.create(size=10, name="Volume2", location=server2.location)
volume1 = response1.volume
volume2 = response2.volume
# Attach volume to server
client.volumes.attach(server1, volume1)
client.volumes.attach(server2, volume2)
# Detach second volume
client.volumes.detach(volume2)
# Poweroff 2nd server
client.servers.power_off(server2)
# Create one more volume and attach it to server with id=33
server33 = Server(id=33)
response = client.volumes.create(size=33, name="Volume33", server=server33)
print(response.action.status)
# Create one more server and attach 2 volumes to it
client.servers.create(
"Server3",
server_type=ServerType(name="cx22"),
image=Image(id=4711),
volumes=[Volume(id=221), Volume(id=222)],
)
|