Skip to content

Commit

Permalink
Merge pull request #521 from sethAmazon/update-apps
Browse files Browse the repository at this point in the history
Allow Arm64 Prometheus App Mesh Containers
  • Loading branch information
Aneurysm9 authored Dec 2, 2022
2 parents a2bb600 + b8bb189 commit 7818d20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions terraform/eks/appmesh/appmesh.tf
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ data "template_file" "traffic_deployment_file" {
vars = {
APP_NAMESPACE = kubernetes_namespace.traffic_ns.metadata[0].name
MESH_NAME = local.mesh_name
FRONT_APP_IMAGE = "${var.sample_app_image_repo}:feapp"
COLOR_APP_IMAGE = "${var.sample_app_image_repo}:colorapp"
FRONT_APP_IMAGE = "${var.sample_app_image_repo}:feapp-latest"
COLOR_APP_IMAGE = "${var.sample_app_image_repo}:colorapp-latest"
}

depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion terraform/eks/jmx/jmx.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ output "metric_dimension_namespace" {

locals {
traffic_generator_image = "${var.sample_app_image_repo}:traffic-generator"
jmx_sample_app_image = "${var.sample_app_image_repo}:tomcatapp"
jmx_sample_app_image = "${var.sample_app_image_repo}:tomcatapp-latest"
}

resource "kubernetes_namespace" "jmx_ns" {
Expand Down

0 comments on commit 7818d20

Please sign in to comment.