Skip to content

Commit

Permalink
fix: Kubecost Container Version health with EKS 1.25+ (#1607)
Browse files Browse the repository at this point in the history
  • Loading branch information
olegTarassov authored May 17, 2023
1 parent a56919d commit dde870e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/add-ons/kubecost.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Deploy Kubecost with custom `values.yaml`
name = "kubecost" # (Required) Release name.
repository = "oci://public.ecr.aws/kubecost" # (Optional) Repository URL where to locate the requested chart.
chart = "cost-analyzer" # (Required) Chart name to be installed.
version = "1.96.0" # (Optional) Specify the exact chart version to install. If this is not specified, it defaults to the version set within default_helm_config: https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/modules/kubernetes-addons/kubecost/locals.tf
version = "1.103.3" # (Optional) Specify the exact chart version to install. If this is not specified, it defaults to the version set within default_helm_config: https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/modules/kubernetes-addons/kubecost/locals.tf
namespace = "kubecost" # (Optional) The namespace to install the release into.
values = [templatefile("${path.module}/kubecost-values.yaml", {})]
}
Expand Down
2 changes: 1 addition & 1 deletion modules/kubernetes-addons/kubecost/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module "helm_addon" {
name = "kubecost"
chart = "cost-analyzer"
repository = "oci://public.ecr.aws/kubecost"
version = "1.97.0"
version = "1.103.3"
namespace = "kubecost"
values = [file("${path.module}/values.yaml")]
create_namespace = true
Expand Down
2 changes: 1 addition & 1 deletion modules/kubernetes-addons/kubecost/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ global:
enabled: false
proxy: false

imageVersion: prod-1.97.0
imageVersion: prod-1.103.3
kubecostFrontend:
image: public.ecr.aws/kubecost/frontend

Expand Down

0 comments on commit dde870e

Please sign in to comment.