talos-linux-api
talos-linux-api copied to clipboard
Python bindings for the Talos Linux gRPC API
talos-linux-api - Python bindings for the Talos Linux gRPC API
Installation
Multiple API versions can be installed simultaneously and are made available
at runtime under an Implicit Namespace Package named talos_linux_api.
Currently available API versions:
pip install talos-linux-api-v1.2.0pip install talos-linux-api-v1.3.0pip install talos-linux-api-v1.4.0pip install talos-linux-api-v1.5.0pip install talos-linux-api-v1.6.0
Usage example
import ssl
from talos_linux_api.v1_6_0.machine import MachineServiceStub
from grpclib.client import Channel
from betterproto.lib.google.protobuf import Empty
ssl_context = ssl.create_default_context()
ssl_context.load_cert_chain('client.crt', 'client.key')
ssl_context.load_verify_locations('ca.crt')
async with Channel(host="example.com", port=50000, ssl=ssl_context) as channel:
machine_service = MachineServiceStub(channel)
response = await machine_service.cpu_info(Empty())
[!NOTE]
opensslwhich thesslmodule relies upon does not like the format of the private key thattalosctlgenerates.-----BEGIN ED25519 PRIVATE KEY----- ... -----END ED25519 PRIVATE KEY-----To make
opensslhappy you have to fix the header and footer by removing theED25519part.-----BEGIN PRIVATE KEY----- ... -----END PRIVATE KEY-----