Aggiunta proxmoxve-python
This commit is contained in:
parent
a6ce8515f5
commit
17ba664985
2
proxmoxve-python/.gitignore
vendored
Normal file
2
proxmoxve-python/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*.pyc
|
||||
venv/
|
5
proxmoxve-python/Pulumi.yaml
Normal file
5
proxmoxve-python/Pulumi.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
name: ${PROJECT}
|
||||
description: ${DESCRIPTION}
|
||||
runtime: python
|
||||
template:
|
||||
description: A minimal Python Pulumi program
|
67
proxmoxve-python/__main__.py
Normal file
67
proxmoxve-python/__main__.py
Normal file
@ -0,0 +1,67 @@
|
||||
"""A Pulumi-based infrastructure with Proxmox VE and Python"""
|
||||
|
||||
import pulumi
|
||||
import pulumi_proxmoxve as proxmox
|
||||
|
||||
config = pulumi.Config()
|
||||
|
||||
provider = proxmox.Provider("proxmoxve",
|
||||
virtual_environment = {
|
||||
"endpoint": config.endpoint,
|
||||
"insecure": True,
|
||||
"username": "root@pam",
|
||||
"password": config.pvepassword
|
||||
}
|
||||
)
|
||||
|
||||
vm = proxmox.vm.VirtualMachine("vm",
|
||||
name = "virtual-machine",
|
||||
node_name = config.node_name,
|
||||
agent = proxmox.vm.VirtualMachineAgentArgs(
|
||||
enabled = True,
|
||||
trim = True,
|
||||
type = "virtio"
|
||||
),
|
||||
bios = "seabios",
|
||||
cpu = proxmox.vm.VirtualMachineCpuArgs(
|
||||
cores = 1,
|
||||
sockets = 1
|
||||
),
|
||||
memory = proxmox.vm.VirtualMachineMemoryArgs(
|
||||
dedicated = 2048
|
||||
),
|
||||
clone = proxmox.vm.VirtualMachineCloneArgs(
|
||||
node_name = config.node_name,
|
||||
datastore_id = "local-lvm",
|
||||
size = 20,
|
||||
file_format = "qcow2"
|
||||
),
|
||||
network_devices = [
|
||||
proxmox.vm.VirtualMachineNetworkDeviceArgs(
|
||||
bridge = "vmbr0",
|
||||
model = "virtio"
|
||||
)
|
||||
],
|
||||
on_boot = True,
|
||||
operating_system = proxmox.vm.VirtualMachineOperatingSystemArgs(
|
||||
type = "l26"
|
||||
),
|
||||
initialization = proxmox.vm.VirtualMachineInitializationArgs(
|
||||
type = "nocloud",
|
||||
datastore_id = "local-lvm",
|
||||
user_account = proxmox.vm.VirtualMachineInitializationUserAccountArgs(
|
||||
username = "syntaxerrormmm",
|
||||
password = "cicciopasticcio",
|
||||
keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFioHkaV1NhX6NCqsJakJw8EVBOcDHm1MEbpY499CPtG syntaxerrormmm@fisso",
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILu91hBh8pNRt4eE1pug0Y4jCHZDCcMJ+vj3CiF5EQHV syntaxerrormmm@syntaxxps",
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP/hn/0xn6DRS2B0paFzDQRakupgTQQ5hitQhqOfWcqz syntaxerrormmm@microbo"
|
||||
]
|
||||
)
|
||||
),
|
||||
opts = pulumi.ResourceOptions(
|
||||
provider = provider
|
||||
)
|
||||
)
|
||||
|
||||
pulumi.export("ip", vm.ipv4_address)
|
2
proxmoxve-python/requirements.txt
Normal file
2
proxmoxve-python/requirements.txt
Normal file
@ -0,0 +1,2 @@
|
||||
pulumi>=3.0.0,<4.0.0
|
||||
pulumi-proxmoxve>=2.0.0
|
Loading…
Reference in New Issue
Block a user