Skip to content

Commit

Permalink
Update to version v1.0.2
Browse files Browse the repository at this point in the history
fixe #133
  • Loading branch information
JoeShi authored Jun 21, 2023
2 parents d75e9d0 + a879b6e commit e47a9ad
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 1 addition & 0 deletions docs/en/implementation-guide/release-notes.md
Original file line number Diff line number Diff line change
@@ -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. |
1 change: 1 addition & 0 deletions docs/zh/implementation-guide/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
| 日期 | 更新记录 |
|---------------|-------------------|
| 2023 年 6 月 | 修复EKS Fluent-Bit部署配置生成问题 |
| 2023 年 4 月 | 修复由于S3 ACL 变化而导致的部署失败问题 |
| 2023 年 3 月 | 首次发布版本 1.0.0 |
Original file line number Diff line number Diff line change
Expand Up @@ -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}.')
Expand Down

0 comments on commit e47a9ad

Please sign in to comment.