From a879b6e4639feddd666f64f704c23460bb02e409 Mon Sep 17 00:00:00 2001 From: Kervin Hu Date: Wed, 21 Jun 2023 14:52:47 +0800 Subject: [PATCH] Update to version v1.0.2 --- CHANGELOG.md | 6 +++++- docs/en/implementation-guide/release-notes.md | 1 + docs/zh/implementation-guide/release-notes.md | 1 + .../api/app_log_ingestion/util/log_agent_helper.py | 13 ++++++++----- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d33b5d1c..8129c904 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.0.1] - 2023-04 +## [1.0.2] - 2023-06-21 +### Fixed +- Fix the EKS Fluent-Bit deployment configuration generation issue + +## [1.0.1] - 2023-04-17 ### Fixed - Fix deployment failure due to S3 ACL changes diff --git a/docs/en/implementation-guide/release-notes.md b/docs/en/implementation-guide/release-notes.md index d97946fa..a6974cd6 100644 --- a/docs/en/implementation-guide/release-notes.md +++ b/docs/en/implementation-guide/release-notes.md @@ -1,4 +1,5 @@ | Date | Change | |---------------|-------------------| +| June 2023 | Fix the EKS Fluent-Bit deployment configuration generation issue. | | April 2023 | Fix deployment failure due to S3 ACL changes. | | March 2023 | Initial release. | \ No newline at end of file diff --git a/docs/zh/implementation-guide/release-notes.md b/docs/zh/implementation-guide/release-notes.md index 9c6137e6..93b940c6 100755 --- a/docs/zh/implementation-guide/release-notes.md +++ b/docs/zh/implementation-guide/release-notes.md @@ -1,4 +1,5 @@ | 日期 | 更新记录 | |---------------|-------------------| +| 2023 年 6 月 | 修复EKS Fluent-Bit部署配置生成问题 | | 2023 年 4 月 | 修复由于S3 ACL 变化而导致的部署失败问题 | | 2023 年 3 月 | 首次发布版本 1.0.0 | \ No newline at end of file diff --git a/source/constructs/lambda/api/app_log_ingestion/util/log_agent_helper.py b/source/constructs/lambda/api/app_log_ingestion/util/log_agent_helper.py index d829cc4e..21bef39a 100644 --- a/source/constructs/lambda/api/app_log_ingestion/util/log_agent_helper.py +++ b/source/constructs/lambda/api/app_log_ingestion/util/log_agent_helper.py @@ -1311,11 +1311,14 @@ def generate_k8s_daemonset_config( def generate_k8s_kubectl_binary_download_url(eks_cluster_version: str, arch: str) -> str: version_map = { "1.19": "1.19.6/2021-01-05", - "1.20": "1.20.1/2022-10-31", - "1.21": "1.21.14/2023-01-11", - "1.22": "1.22.17/2023-01-11", - "1.23": "1.23.15/2023-01-11", - "1.24": "1.24.9/2023-01-11", + "1.20": "1.20.15/2022-10-31", + "1.21": "1.21.14/2023-01-30", + "1.22": "1.22.17/2023-05-11", + "1.23": "1.23.17/2023-05-11", + "1.24": "1.24.13/2023-05-11", + "1.25": "1.25.9/2023-05-11", + "1.26": "1.26.4/2023-05-11", + "1.27": "1.27.1/2023-04-19", } if eks_cluster_version not in version_map.keys(): raise Exception(f'Not supported version: {eks_cluster_version}.')