Releases: gruntwork-io/helm-kubernetes-services
v0.2.9
v0.2.8
Charts affected
k8s-service
Description
Updated the chart to allow specifying a sub path for the volume mount for ConfigMap
.
Special thanks
Special thanks to @bobalong79 for their contribution!
Related links
v0.2.7
v0.2.6
Charts affected
k8s-service
Description
Added ability to configure terminationGracePeriodSeconds
.
Special thanks
Special thanks to @martinhutton and @meganjohn for their contribution!
Related links
v0.2.5
Charts affected
k8s-service
Description
Added ability to configure emptyDirs
that are backed by the worker node disk, rather than tmpfs
.
Special thanks
Special thanks to @jonnymatts-global for their contribution!
Related links
v0.2.4
Charts affected
k8s-service
Description
Added ability to configure initContainers
on the Deployment
using the new input initContainers
.
Special thanks
Special thanks to @davidlivingrooms for their contribution!
Related links
v0.2.3
v0.2.2
v0.2.1
v0.2.0
Charts affected
k8s-service
[BACKWARD INCOMPATIBLE]
Description
The aws.irsa
configuration has been deprecated and removed. Please use IRSA annotations on the Service Account. See the migration guide for more details.
Migration guide
This release deprecates the aws
input value which was originally used for configuring AWS IAM Roles for Service Accounts using manual injection of the projected token (via environment variables and secrets mounting in the Pod). In newer versions of EKS, you can instead rely on the mutating admission hook that comes with every EKS cluster. To use the mutating admission hook, you need to apply the annotation eks.amazonaws.com/role-arn
on the ServiceAccount.
Since the old approach of manually projecting the tokens is deprecated by AWS, this release removes the manual projection of tokens via the aws
input value. If you were relying on the aws.irsa
input value, you must instead switch to using the annotation on the Service Account:
serviceAccount:
name: "my-app"
create: true
annotations:
eks.amazonaws.com/role-arn: "IAM_ROLE_ARN"