Release v0.64.0
github-actions
released this
01 Feb 12:25
·
122 commits
to master
since this release
What's Changed
Breaking change
This release has a breaking change.
Up til this version one would specify imagePullSecrets as follows:
image:
repository: aws_account_id.dkr.ecr.region.amazonaws.com/my-web-app
tag: x.y.z
imagePullSecrets:
- name: regcred
After this version, use the following pattern:
image:
repository: aws_account_id.dkr.ecr.region.amazonaws.com/my-web-app
tag: x.y.z
imagePullSecrets:
- regcred
Note that the name:
field is dropped.
Full Changelog: 2023122...2024020