Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat[chart]: Update to ExternalDNS v0.12.0 #2777

Merged
merged 1 commit into from
Jun 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions charts/external-dns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- Update _ExternalDNS_ version to [v0.12.0](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.12.0). [@vojtechmares](https://github.com/vojtechmares)
- Set resource namespaces to `{{ .Release.Namespace }}` in the templates instead of waiting until apply time for inference. [@stevehipwell](https://github.com/stevehipwell)
- Fixed `rbac.additionalPermissions` default value.([#2796](https://github.com/kubernetes-sigs/external-dns/pull/2796)) [@tamalsaha](https://github.com/tamalsaha)

Expand Down
22 changes: 19 additions & 3 deletions charts/external-dns/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: external-dns
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
type: application
version: 1.9.0
appVersion: 0.11.0
version: 1.10.0
appVersion: 0.12.0
keywords:
- kubernetes
- external-dns
Expand All @@ -19,5 +19,21 @@ maintainers:
email: steve.hipwell@gmail.com
annotations:
artifacthub.io/changes: |
- kind: added
description: "Added commonLabels value to allow the addition of labels to all resources."
- kind: added
description: "Added support for Process Namespace Sharing via the shareProcessNamespace value."
links:
- name: GitHub Issue #2715
url: https://github.com/kubernetes-sigs/external-dns/pull/2715
- name: Process Namespace Sharing
url: https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/
- kind: changed
description: "Update ExternalDNS version to v0.11.0"
description: "Update ExternalDNS version to v0.12.0"
vojtechmares marked this conversation as resolved.
Show resolved Hide resolved
- kind: changed
description: "Set resource namespaces to {{ .Release.Namespace }} in the templates instead of waiting until apply time for inference."
- kind: fixed
description: "Fixed rbac.additionalPermissions default value."
links:
- name: GitHub Issue #2796
url: https://github.com/kubernetes-sigs/external-dns/pull/2796