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

Update the default autoscaler version #39

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 cloud/aws/terraform/modules/aws-hashistack/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,5 @@ variable "allowlist_ip" {
variable "nomad_autoscaler_image" {
description = "The Docker image to use for the Nomad Autoscaler job."
type = string
default = "hashicorp/nomad-autoscaler:0.3.3"
default = "hashicorp/nomad-autoscaler:0.3.4"
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ variable "consul_binary" {
variable "nomad_autoscaler_image" {
description = "The Docker image to use for the Nomad Autoscaler job."
type = string
default = "hashicorp/nomad-autoscaler:0.3.3"
default = "hashicorp/nomad-autoscaler:0.3.4"
}

variable "hashistack_image_name" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ job "autoscaler" {
driver = "docker"

config {
image = "hashicorp/nomad-autoscaler:0.3.3"
image = "hashicorp/nomad-autoscaler:0.3.4"
command = "nomad-autoscaler"
args = ["agent", "-config", "local/config.hcl"]
ports = ["autoscaler"]
Expand Down
2 changes: 1 addition & 1 deletion cloud/gcp/terraform/modules/gcp-hashistack/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ variable "allowlist_ip" {
variable "nomad_autoscaler_image" {
description = "The Docker image to use for the Nomad Autoscaler job."
type = string
default = "hashicorp/nomad-autoscaler:0.3.3"
default = "hashicorp/nomad-autoscaler:0.3.4"
}

variable "nomad_binary" {
Expand Down
2 changes: 1 addition & 1 deletion vagrant/dynamic-app-sizing/jobs/das-autoscaler.nomad
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ job "das-autoscaler" {
driver = "docker"

config {
image = "hashicorp/nomad-autoscaler-enterprise:0.3.3"
image = "hashicorp/nomad-autoscaler-enterprise:0.3.4"
command = "nomad-autoscaler"
ports = ["http"]

Expand Down
2 changes: 1 addition & 1 deletion vagrant/horizontal-app-scaling/jobs/autoscaler.nomad
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ job "autoscaler" {
driver = "docker"

config {
image = "hashicorp/nomad-autoscaler:0.3.3"
image = "hashicorp/nomad-autoscaler:0.3.4"
command = "nomad-autoscaler"
ports = ["http"]

Expand Down