Skip to content

Releases: automat-it/terraform-aws-eks-auxiliary

v6.3.36.0

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 03 Jul 07:22
4bb1db8

What's Changed

New Contributors

Full Changelog: v6.3.35.1...v6.3.36.0

v6.3.35.1

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 29 Apr 11:43
d1e5f02

Updated helm versions

argocd: 9.4.2 → 9.5.4
aws-alb-ingress-controller: 1.17.1 → 3.2.2
cluster-autoscaler: 9.55.0 → 9.57.0
external-secrets: 2.0.0 → 2.4.0
karpenter: 1.9.0 → 1.12.0

What's Changed

Full Changelog: v6.3.35.0...v6.3.35.1

v6.3.35.0

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 10 Mar 08:24
a096156

Updated helm versions

argocd - 9.4.2
aws-alb-ingress-controller - 1.17.1
cluster-autoscaler -9.55.0
external-dns - 1.20.0
external-secrets - 2.0.0
karpenter - 1.9.0
keda - 2.19.0

What's Changed

Full Changelog: v6.3.34.2...v6.3.35.0

v5.2.35.0

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 10 Mar 08:23
2408d9b

Updated helm versions:

argocd - 9.4.2
aws-alb-ingress-controller - 1.17.1
cluster-autoscaler -9.55.0
external-dns - 1.20.0
external-secrets - 2.0.0
karpenter - 1.9.0
keda - 2.19.0

What's Changed

Full Changelog: v5.2.34.2...v5.2.35.0

v6.3.34.2

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 02 Jan 08:55
9b3393b

What's Changed

Full Changelog: v6.3.34.1...v6.3.34.2

v5.2.34.2

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 02 Jan 08:54
a370f04

What's Changed

Full Changelog: v5.2.34.1...v5.2.34.2

v6.3.34.1

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 05 Dec 15:15
0c6abe8

What's Changed

  • Implemented new helm-chart - node-local-dns. To read more here
  • Added new helm-chart for node-local-dns
  • Adjusted Karpenter controller to handle functionality with node-local-dns (Expected drift in terraform, during apply ❗). NO distruptions expected

How to use new feature of node-local-dns?
Example:

services = {
  local-dns = {
    enabled             = true
    local_ip            = "169.254.20.10" # default values of the module
    upstream_cluster_ip = cidrhost(data.aws_eks_cluster.this.kubernetes_network_config[0].service_ipv4_cidr, 10)
    extra_zones = [
      {
        name     = "aws.com"
        cacheTTL = 3600
      },
      {
        name     = "amazonaws.com"
        cacheTTL = 3600
      },
      {
        name     = "prod.local"
        cacheTTL = 3600
      }
    ]
  }
}

New Contributors

Full Changelog: v6.3.34.0...v6.3.34.1

v5.2.34.1

Choose a tag to compare

@alexanderkarlashov alexanderkarlashov released this 05 Dec 15:14
d8e8152

What's Changed

  • Implemented new helm-chart - node-local-dns. To read more here
  • Added new helm-chart for node-local-dns
  • Bumped helm provider for module - helm to 3.0.0
  • Adjusted Karpenter controller to hadnle fucntionallity with node-local-dns (Expected drift in terraform, during apply ❗). NO distruptions expected

How to use new feature of node-local-dns?
Example:

services = {
  local-dns = {
    enabled             = true
    local_ip            = "169.254.20.10" # default values of the module
    upstream_cluster_ip = cidrhost(data.aws_eks_cluster.this.kubernetes_network_config[0].service_ipv4_cidr, 10)
    extra_zones = [
      {
        name     = "aws.com"
        cacheTTL = 3600
      },
      {
        name     = "amazonaws.com"
        cacheTTL = 3600
      },
      {
        name     = "prod.local"
        cacheTTL = 3600
      }
    ]
  }
}

Full Changelog: v5.2.34.0...v5.2.34.1

v6.3.34.0

Choose a tag to compare

@maksym-butusov maksym-butusov released this 25 Nov 15:38
f75e5b9

What's Changed

❗Breaking changes❗
Resource "kubectl_manifest" "karpenter_default_node_pool" was renamed to "kubectl_manifest" "karpenter_node_pools"
To migrate existing default NodePool need to migrate resource e.g. using next:

moved {
from = module.MODULE_NAME.kubectl_manifest.karpenter_default_node_pool[0]
to = module.MODULE_NAME.kubectl_manifest.karpenter_node_pools["default"]
}

Full Changelog: v2.34.2...v6.3.34.0

v5.2.34.0

Choose a tag to compare

@maksym-butusov maksym-butusov released this 25 Nov 15:35
bae0635

What's Changed

❗Breaking changes❗
Resource "kubectl_manifest" "karpenter_default_node_pool" was renamed to "kubectl_manifest" "karpenter_node_pools"
To migrate existing default NodePool need to migrate resource e.g. using next:

moved {
from = module.MODULE_NAME.kubectl_manifest.karpenter_default_node_pool[0]
to = module.MODULE_NAME.kubectl_manifest.karpenter_node_pools["default"]
}

Full Changelog: v1.34.2...v5.2.34.0