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 add-on version. #14

Merged
merged 1 commit into from
Apr 2, 2024
Merged
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
4 changes: 2 additions & 2 deletions scripts/eks/appsignals/enable-app-signals.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ if [[ "${result}" == *"No addon: "* ]]; then
echo "EKS amazon-cloudwatch-observability add-on is now ACTIVE"
else
addon_version=$(echo "${result}" | grep "addonVersion" | awk -F '"' '{print $4}')
if [[ "$addon_version" < "v1.2.0" ]]; then
if [[ "$addon_version" < "v1.4.0" ]]; then
read -p "Do you want to update the add-on version to v1.2.0, current version $addon_version? (yes/no): " choice

if [ "$choice" == "yes" ]; then
aws eks update-addon \
--cluster-name ${CLUSTER_NAME} \
--addon-name amazon-cloudwatch-observability \
--addon-version v1.2.0-eksbuild.1 \
--addon-version v1.4.0-eksbuild.1 \
--region ${REGION}
# wait until the amazon-cloudwatch-observability add-on is active
echo "Waiting for addon to become ACTIVE..."
Expand Down
Loading