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

Upgrade external-dns to 0.14.2 #91

Merged
merged 1 commit into from
Jul 8, 2024
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Unreleased

### Enhancement
- Upgrade external-dns to 0.14.2

### Note
We are upgrading changing the bare minimum to make it work. We still have to re-read
all the changelog and add all new features to this chart (or migrate to the one
upstream if we can).

## v0.4.1 - 2024-06-18

### ⛓️ Dependencies
Expand Down
12 changes: 1 addition & 11 deletions charts/stateless-dns/crds/crds.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: dnsendpoints.externaldns.k8s.io
annotations:
controller-gen.kubebuilder.io/version: v0.5.0
api-approved.kubernetes.io: "https://github.com/kubernetes-sigs/external-dns/pull/2007"
creationTimestamp: null
name: dnsendpoints.externaldns.k8s.io
spec:
group: externaldns.k8s.io
names:
Expand Down Expand Up @@ -86,9 +82,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []
4 changes: 3 additions & 1 deletion charts/stateless-dns/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ externalDNS:
image:
registry: registry.k8s.io # Image registry
repository: external-dns/external-dns # Image repository
tag: v0.13.4 # Image tag
tag: v0.14.2 # Image tag

pullPolicy: IfNotPresent # Image pull policy.

Expand Down Expand Up @@ -131,6 +131,8 @@ externalDNS:
# During the testing we were able to create only "A" and "TXT" records with this setup.
managedRecordTypes: # Entry types that external-dns will be able to create in the provider. NS and MX entries are unsupported, for more information read the full explanation in the `values.yaml`.
- A
- AAAA
- CNAME

# Additional arguments to pass to the `external-dns` container.
extraArgs: []
Expand Down
Loading