removed superfluous demo2 startup file, added app_context to prevent flask from crashing, changed group_number to default again, added default pubkey

This commit is contained in:
Sebastian Rieger
2023-09-25 15:38:22 +02:00
parent 4bfb746cad
commit a50038ffd5
10 changed files with 31 additions and 250 deletions

View File

@ -11,7 +11,7 @@ from libcloud.compute.types import Provider
# Please use 1-29 for X in the following variable to specify your group number. (will be used for the username,
# project etc., as coordinated in the lab sessions)
group_number = 30
group_number = X
# web service endpoint of the private cloud infrastructure
@ -32,7 +32,8 @@ ubuntu_image_name = "Ubuntu 20.04 - Focal Fossa - 64-bit - Cloud Based Image"
# id_rsa.pub should look like this (standard sshd pubkey format):
# ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAw+J...F3w2mleybgT1w== user@HOSTNAME
keypair_name = 'srieger-pub'
#keypair_name = 'CloudComp30-keypair'
keypair_name = "srieger-pub"
pub_key_file = '~/.ssh/id_rsa.pub'
flavor_name = 'm1.small'