-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into silver-until-ips-for-kvm
- Loading branch information
Showing
5 changed files
with
23,602 additions
and
24,206 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,56 @@ | ||
data "openstack_images_image_v2" "beacon-image" { | ||
name = "vgcn~rockylinux-9-latest-x86_64~+generic+internal~20240820~42312~HEAD~479ec25" | ||
most_recent = true | ||
} | ||
|
||
resource "openstack_compute_instance_v2" "beacon" { | ||
name = "beacon.galaxyproject.eu" | ||
image_id = data.openstack_images_image_v2.beacon-image.id | ||
flavor_name = "m1.small" | ||
key_pair = "cloud2" | ||
tags = [] | ||
security_groups = ["default", "public-web2"] | ||
|
||
network { | ||
name = "bioinf" | ||
} | ||
|
||
user_data = <<-EOF | ||
#cloud-config | ||
bootcmd: | ||
- test -z "$(blkid /dev/vdb)" && mkfs -t ext4 /dev/vdb | ||
- mkdir -p /data | ||
mounts: | ||
- ["/dev/vdb", "/data", auto, "defaults,nofail", "0", "2"] | ||
runcmd: | ||
- [ chown, "rocky.rocky", -R, /data ] | ||
package_update: true | ||
package_upgrade: true | ||
EOF | ||
} | ||
|
||
resource "aws_route53_record" "beacon-galaxyproject" { | ||
allow_overwrite = true | ||
zone_id = var.zone_galaxyproject_eu | ||
name = "beacon.galaxyproject.eu" | ||
type = "A" | ||
ttl = "600" | ||
records = ["${openstack_compute_instance_v2.beacon.access_ip_v4}"] | ||
} | ||
|
||
resource "random_id" "beacon-volume_name_unique" { | ||
byte_length = 8 | ||
} | ||
|
||
resource "openstack_blockstorage_volume_v3" "beacon-vol" { | ||
name = "beacon-data-vol-${random_id.beacon-volume_name_unique.hex}" | ||
volume_type = "default" | ||
description = "Data volume for beacon VM" | ||
size = 128 | ||
} | ||
|
||
resource "openstack_compute_volume_attach_v2" "beacon-va" { | ||
instance_id = openstack_compute_instance_v2.beacon.id | ||
volume_id = openstack_blockstorage_volume_v3.beacon-vol.id | ||
} | ||
# Moved to KVM | ||
#data "openstack_images_image_v2" "beacon-image" { | ||
# name = "vgcn~rockylinux-9-latest-x86_64~+generic+internal~20240820~42312~HEAD~479ec25" | ||
# most_recent = true | ||
#} | ||
# | ||
#resource "openstack_compute_instance_v2" "beacon" { | ||
# name = "beacon.galaxyproject.eu" | ||
# image_id = data.openstack_images_image_v2.beacon-image.id | ||
# flavor_name = "m1.small" | ||
# key_pair = "cloud2" | ||
# tags = [] | ||
# security_groups = ["default", "public-web2"] | ||
# | ||
# network { | ||
# name = "bioinf" | ||
# } | ||
# | ||
# user_data = <<-EOF | ||
# #cloud-config | ||
# bootcmd: | ||
# - test -z "$(blkid /dev/vdb)" && mkfs -t ext4 /dev/vdb | ||
# - mkdir -p /data | ||
# mounts: | ||
# - ["/dev/vdb", "/data", auto, "defaults,nofail", "0", "2"] | ||
# runcmd: | ||
# - [ chown, "rocky.rocky", -R, /data ] | ||
# package_update: true | ||
# package_upgrade: true | ||
# EOF | ||
#} | ||
# | ||
#resource "aws_route53_record" "beacon-galaxyproject" { | ||
# allow_overwrite = true | ||
# zone_id = var.zone_galaxyproject_eu | ||
# name = "beacon.galaxyproject.eu" | ||
# type = "A" | ||
# ttl = "600" | ||
# records = ["${openstack_compute_instance_v2.beacon.access_ip_v4}"] | ||
#} | ||
# | ||
#resource "random_id" "beacon-volume_name_unique" { | ||
# byte_length = 8 | ||
#} | ||
# | ||
#resource "openstack_blockstorage_volume_v3" "beacon-vol" { | ||
# name = "beacon-data-vol-${random_id.beacon-volume_name_unique.hex}" | ||
# volume_type = "default" | ||
# description = "Data volume for beacon VM" | ||
# size = 128 | ||
#} | ||
# | ||
#resource "openstack_compute_volume_attach_v2" "beacon-va" { | ||
# instance_id = openstack_compute_instance_v2.beacon.id | ||
# volume_id = openstack_blockstorage_volume_v3.beacon-vol.id | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
data "openstack_images_image_v2" "beacon-import-image" { | ||
# VGCN Rocky 9.2 generic image | ||
name = "vgcn~rockylinux-9-latest-x86_64~+generic+internal~20240820~42312~HEAD~479ec25" | ||
most_recent = true | ||
} | ||
|
||
resource "openstack_compute_instance_v2" "beacon-import" { | ||
name = "beacon-import.galaxyproject.eu" | ||
image_id = data.openstack_images_image_v2.beacon-import-image.id | ||
flavor_name = "m1.tiny" | ||
key_pair = "cloud2" | ||
tags = [] | ||
security_groups = ["default"] | ||
|
||
network { | ||
name = "bioinf" | ||
} | ||
|
||
user_data = <<-EOF | ||
#cloud-config | ||
package_update: true | ||
package_upgrade: true | ||
EOF | ||
|
||
} | ||
|
||
resource "aws_route53_record" "beacon-import-galaxyproject" { | ||
allow_overwrite = true | ||
zone_id = var.zone_galaxyproject_eu | ||
name = "beacon-import.galaxyproject.eu" | ||
records = ["${openstack_compute_instance_v2.beacon-import.access_ip_v4}"] | ||
type = "A" | ||
ttl = "600" | ||
} | ||
#data "openstack_images_image_v2" "beacon-import-image" { | ||
# # VGCN Rocky 9.2 generic image | ||
# name = "vgcn~rockylinux-9-latest-x86_64~+generic+internal~20240820~42312~HEAD~479ec25" | ||
# most_recent = true | ||
#} | ||
# | ||
#resource "openstack_compute_instance_v2" "beacon-import" { | ||
# name = "beacon-import.galaxyproject.eu" | ||
# image_id = data.openstack_images_image_v2.beacon-import-image.id | ||
# flavor_name = "m1.tiny" | ||
# key_pair = "cloud2" | ||
# tags = [] | ||
# security_groups = ["default"] | ||
# | ||
# network { | ||
# name = "bioinf" | ||
# } | ||
# | ||
# user_data = <<-EOF | ||
# #cloud-config | ||
# package_update: true | ||
# package_upgrade: true | ||
# EOF | ||
# | ||
#} | ||
# | ||
#resource "aws_route53_record" "beacon-import-galaxyproject" { | ||
# allow_overwrite = true | ||
# zone_id = var.zone_galaxyproject_eu | ||
# name = "beacon-import.galaxyproject.eu" | ||
# records = ["${openstack_compute_instance_v2.beacon-import.access_ip_v4}"] | ||
# type = "A" | ||
# ttl = "600" | ||
#} |
Oops, something went wrong.