Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Beacon moved to KVM, comment out #222

Merged
merged 3 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion instance_core_incoming.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resource "openstack_compute_instance_v2" "incoming" {
flavor_name = "m1.small"
key_pair = "cloud2"

security_groups = ["egress", "public-ssh", "public-web2", "public-ftp"]
security_groups = ["egress", "public-ssh", "public-web2", "public-ftp", "public-ping"]

network {
name = "public-extended"
Expand Down
111 changes: 56 additions & 55 deletions instance_dedicated_beacon.tf
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
#}
68 changes: 34 additions & 34 deletions instance_dedicated_beacon_import.tf
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"
#}
Loading
Loading