Skip to content

Commit

Permalink
updated ami
Browse files Browse the repository at this point in the history
  • Loading branch information
morganchorlton3 committed Dec 16, 2024
1 parent f462011 commit 39df5ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ami.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ data "aws_ami" "amazon_linux_2" {
owners = ["amazon"]
filter {
name = "name"
values = ["amzn2-ami-hvm*"]
values = ["al2023-ami-2023.*-x86_64"]
}
}
2 changes: 1 addition & 1 deletion executor.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ resource "null_resource" "setup_nodes" {
"echo SETUP NODES ${count.index}",
"echo '${local.node_entrypoint}'",
"cd ${var.loadtest_dir_destination}",
"${local.node_entrypoint}",
local.node_entrypoint,
"sleep 1"
]
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/locust.entrypoint.leader.full.sh.tpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

sudo yum update -y
sudo yum install -y pcre2-devel.x86_64 python gcc python3-devel tzdata curl unzip bash htop
sudo yum install -y pcre2-devel.x86_64 python gcc python3-devel tzdata curl unzip bash htop python3-pip --skip-broken

# LOCUST
export LOCUST_VERSION="${LOCUST_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion scripts/locust.entrypoint.node.full.sh.tpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

sudo yum update -y
sudo yum install -y pcre2-devel.x86_64 python gcc python3-devel tzdata curl unzip bash htop
sudo yum install -y pcre2-devel.x86_64 python gcc python3-devel tzdata curl unzip bash htop python3-pip --skip-broken

# LOCUST
export LOCUST_VERSION="${LOCUST_VERSION}"
Expand Down

0 comments on commit 39df5ba

Please sign in to comment.