Changed offers in VM pricing, Fixed pricing error changing disk size, VM footer dead links, Added logged out message
This commit is contained in:
parent
c3abf806c6
commit
e26eecf2eb
13 changed files with 124 additions and 44 deletions
|
|
@ -12,39 +12,41 @@ class Command(BaseCommand):
|
|||
'core_price': 10,
|
||||
'memory_price': 5,
|
||||
'disk_size_price': 1,
|
||||
'description': 'VM auf einzelner HW, Raid1, kein HA'
|
||||
'description': 'VM auf einzelner HW, Raid1, kein HA',
|
||||
'location':'DE'
|
||||
}
|
||||
|
||||
return {
|
||||
'hetzner_nug': {
|
||||
'base_price': 5,
|
||||
'memory_price': 2,
|
||||
'core_price': 2,
|
||||
'disk_size_price': 0.5,
|
||||
'description': 'VM ohne Uptime Garantie'
|
||||
},
|
||||
# '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_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'
|
||||
},
|
||||
# },
|
||||
# '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",
|
||||
'location':'CH',
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue