1
0
Fork 0
mirror of https://github.com/ThomasGsp/HyperProxmox.git synced 2025-02-12 11:12:10 +00:00
No description
Find a file
2017-12-23 12:25:09 +01:00
.idea delete pycache 2017-12-23 12:25:09 +01:00
code/scripts/main delete pycache 2017-12-23 12:25:09 +01:00
databases/mongoDB first commit 2017-10-21 22:04:42 +02:00
doc modifié : README.md 2017-11-07 10:30:33 +01:00
LICENSE Create LICENSE 2017-11-18 21:19:30 +01:00
README.md Update README.md 2017-11-19 11:01:35 +01:00

HyperProxmox

  • Author : Tlams
  • Date : 2017/2018
  • Status: Dev
  • Object : Massive LXC CT / KVM deployment system for Proxmox clusters.

Quick start

Requirement:

  • Proxmox server or cluster (or multiples clusters !)
  • administrative pve user (full access)
  • Vztemplate uploaded

Init:

# Start & generate your key
python3.5 startup.py

Insert your first cluster

curl -H -XPOST -d '{ "name": "Cluster_1",
                        "url":"proxmox.cluster.net",
                        "port": "8006",
                        "user": "user@pve",
                        "password": "******",
                        "template": "local:vztmpl/debian-9.0-standard_9.0-2_amd64.tar.gz",
                        "storage_disk": "disks",
                        "exclude_nodes": [""],
                        "weight": 1 }'  localhost:8080/api/v1/administration/cluster/new\

Create your first CT

curl -H -XPOST -d '{"count":"1"}' localhost:8080/api/v1/instance/new

Delete it

curl -XDELETE  localhost:8080/api/v1/instance/<id>