diff --git a/.github/workflows/release-chart.yaml b/.github/workflows/release-chart.yaml index 0fcead910..95ce0baa8 100644 --- a/.github/workflows/release-chart.yaml +++ b/.github/workflows/release-chart.yaml @@ -10,9 +10,8 @@ on: permissions: {} jobs: release: - permissions: - contents: write # to push chart release and create a release (helm/chart-releaser-action) + contents: write # to push chart release and create a release (helm/chart-releaser-action) if: github.repository == 'kubernetes-sigs/external-dns' runs-on: ubuntu-latest @@ -42,7 +41,7 @@ jobs: - name: Create release notes run: | set -euo pipefail - cat <<"EOF" > charts/external-dns/_release-notes.md + cat <<"EOF" > charts/external-dns/RELEASE.md ${{ steps.changelog_reader.outputs.changes }} EOF @@ -62,4 +61,5 @@ jobs: env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" CR_RELEASE_NAME_TEMPLATE: "external-dns-helm-chart-{{ .Version }}" - CR_RELEASE_NOTES_FILE: _release-notes.md + CR_RELEASE_NOTES_FILE: RELEASE.md + CR_MAKE_RELEASE_LATEST: false diff --git a/charts/external-dns/CHANGELOG.md b/charts/external-dns/CHANGELOG.md index 7b7197da6..8e30bd0e2 100644 --- a/charts/external-dns/CHANGELOG.md +++ b/charts/external-dns/CHANGELOG.md @@ -17,6 +17,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Deprecated - Removed --> +## [v1.12.1] - 2023-02-06 + +### All Changes + +- Updated _ExternalDNS_ version to [v0.13.2](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.13.2). ([#3371](https://github.com/kubernetes-sigs/external-dns/pull/3371)) [@stevehipwell](https://github.com/stevehipwell) +- Added `secretConfiguration.subPath` to mount specific files from secret as a sub-path. ([#3227](https://github.com/kubernetes-sigs/external-dns/pull/3227)) [@jkroepke](https://github.com/jkroepke) +- Changed to use `registry.k8s.io` instead of `k8s.gcr.io`. ([#3261](https://github.com/kubernetes-sigs/external-dns/pull/3261)) [@johngmyers](https://github.com/johngmyers) + ## [v1.12.0] - 2022-11-29 ### All Changes diff --git a/charts/external-dns/Chart.yaml b/charts/external-dns/Chart.yaml index 72d1c1f3b..9dbbda380 100644 --- a/charts/external-dns/Chart.yaml +++ b/charts/external-dns/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: external-dns description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers. type: application -version: 1.12.0 -appVersion: 0.13.1 +version: 1.12.1 +appVersion: 0.13.2 keywords: - kubernetes - externaldns @@ -21,4 +21,8 @@ maintainers: annotations: artifacthub.io/changes: | - kind: changed - description: "Updated ExternalDNS version to v0.13.1." + description: "Updated ExternalDNS version to v0.13.2." + - kind: added + description: "Added secretConfiguration.subPath to mount specific files from secret as a sub-path." + - kind: changed + description: "Changed to use registry.k8s.io instead of k8s.gcr.io."