Skip to content

Commit b3d7e7c

Browse files
authored
Force use 1.8.0 (#129)
*Issue description:* Use released helm version to avoid canary failure. Commit picked from aws-observability/helm-charts#57. Verified ``` amazon-cloudwatch-observability % pwd /Users/zmengyi/go/src/github.com/aws-observability/helm-charts/charts/amazon-cloudwatch-observability amazon-cloudwatch-observability % git reset --hard e0e99c77f69ef388b0ffce769371f7c735a776e4 HEAD is now at e0e99c7 release 1.8.0 (#57) ``` By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent b1010c9 commit b3d7e7c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

terraform/java/k8s/deploy/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ resource "null_resource" "deploy" {
4040
git clone https://github.com/aws-observability/helm-charts -q
4141
4242
cd helm-charts/charts/amazon-cloudwatch-observability/
43+
git reset --hard e0e99c77f69ef388b0ffce769371f7c735a776e4
4344
4445
echo "LOG: Installing CloudWatch Agent Operator using Helm"
4546
helm upgrade --install --debug --namespace amazon-cloudwatch amazon-cloudwatch-operator ./ --create-namespace --set region=${var.aws_region} --set clusterName=k8s-cluster-${var.test_id}
@@ -150,4 +151,4 @@ resource "null_resource" "deploy" {
150151
EOF
151152
]
152153
}
153-
}
154+
}

terraform/python/k8s/deploy/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ resource "null_resource" "deploy" {
4040
echo "LOG: Cloning helm charts repo"
4141
git clone https://github.com/aws-observability/helm-charts.git -q
4242
cd helm-charts/charts/amazon-cloudwatch-observability
43+
git reset --hard e0e99c77f69ef388b0ffce769371f7c735a776e4
4344
4445
echo "LOG: Installing CloudWatch Agent Operator using Helm"
4546
helm upgrade --install --debug --namespace amazon-cloudwatch amazon-cloudwatch-operator ./ --create-namespace --set region=${var.aws_region} --set clusterName=k8s-cluster-${var.test_id}
@@ -149,4 +150,4 @@ resource "null_resource" "deploy" {
149150
EOF
150151
]
151152
}
152-
}
153+
}

0 commit comments

Comments
 (0)