Fixed ungleich urls, created model for storing VM types, created command to load VM prices and data to database
This commit is contained in:
parent
5397fd9a63
commit
7c891fe9c4
9 changed files with 155 additions and 2 deletions
0
hosting/management/commands/__init__.py
Normal file
0
hosting/management/commands/__init__.py
Normal file
54
hosting/management/commands/create_vm_types.py
Normal file
54
hosting/management/commands/create_vm_types.py
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
from django.core.management.base import BaseCommand, CommandError
|
||||
from hosting.models import VirtualMachineType
|
||||
|
||||
|
||||
class Command(BaseCommand):
|
||||
help = 'Create VM types'
|
||||
|
||||
def get_data(self):
|
||||
|
||||
hetzner = {
|
||||
'base_price': 10,
|
||||
'core_price': 10,
|
||||
'memory_price': 10,
|
||||
'disk_size_price': 10,
|
||||
'description': 'VM auf einzelner HW, Raid1, kein HA'
|
||||
}
|
||||
|
||||
return {
|
||||
'hetzner_nug': {
|
||||
'base_price': 5,
|
||||
'memory_price': 2,
|
||||
'core_price': 2,
|
||||
'disk_size_price': 0.5,
|
||||
'description': 'VM ohne Uptime Garantie'
|
||||
},
|
||||
'hetzner': hetzner,
|
||||
'hetzner_raid6': {
|
||||
'base_price': hetzner['base_price']*1.2,
|
||||
'core_price': hetzner['core_price']*1.2,
|
||||
'memory_price': hetzner['memory_price']*1.2,
|
||||
'disk_size_price': hetzner['disk_size_price']*1.2,
|
||||
'description': 'VM auf einzelner HW, Raid1, kein HA'
|
||||
|
||||
},
|
||||
'hetzner_glusterfs': {
|
||||
'base_price': hetzner['base_price']*1.4,
|
||||
'core_price': hetzner['core_price']*1.4,
|
||||
'memory_price': hetzner['memory_price']*1.4,
|
||||
'disk_size_price': hetzner['disk_size_price']*1.4,
|
||||
'description': 'VM auf einzelner HW, Raid1, kein HA'
|
||||
},
|
||||
'bern': {
|
||||
'base_price': 12,
|
||||
'core_price': 25,
|
||||
'memory_price': 7,
|
||||
'disk_size_price': 0.70,
|
||||
'description': "VM in Bern, HA Setup ohne HA Garantie",
|
||||
}
|
||||
}
|
||||
|
||||
def handle(self, *args, **options):
|
||||
|
||||
data = self.get_data()
|
||||
[VirtualMachineType.objects.create(**data[key]) for key in data.keys()]
|
||||
Loading…
Add table
Add a link
Reference in a new issue