mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-07 01:56:57 +02:00
fix(chart): Fix webhook install failure (#4173)
* fix(chart): Fix webhook install failure * chore(chart): Update chart metadata
This commit is contained in:
parent
67fc04298f
commit
2b69c578b6
@ -18,6 +18,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [UNRELEASED]
|
## [UNRELEASED]
|
||||||
|
|
||||||
|
## [v1.14.1] - 2024-01-11
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed webhook install failure: `"http-webhook-metrics": must be no more than 15 characters`. ([#4173](https://github.com/kubernetes-sigs/external-dns/pull/4173)) [@gabe565](https://github.com/gabe565)
|
||||||
|
|
||||||
## [v1.14.0] - 2024-01-10
|
## [v1.14.0] - 2024-01-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: external-dns
|
name: external-dns
|
||||||
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
|
description: ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
|
||||||
type: application
|
type: application
|
||||||
version: 1.14.0
|
version: 1.14.1
|
||||||
appVersion: 0.14.0
|
appVersion: 0.14.0
|
||||||
keywords:
|
keywords:
|
||||||
- kubernetes
|
- kubernetes
|
||||||
@ -20,17 +20,5 @@ maintainers:
|
|||||||
email: steve.hipwell@gmail.com
|
email: steve.hipwell@gmail.com
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: fixed
|
||||||
description: "Added the option to explicitly enable or disable service account token automounting. ([#3983](https://github.com/kubernetes-sigs/external-dns/"
|
description: "Fixed webhook install failure: `http-webhook-metrics: must be no more than 15 characters`. ([#4173](https://github.com/kubernetes-sigs/external-dns/pull/4173)) [@gabe565](https://github.com/gabe565)"
|
||||||
- kind: added
|
|
||||||
description: "Added the option to configure revisionHistoryLimit on the K8s Deployment resource. ([#4008](https://github.com/kubernetes-sigs/external-dns/pull/4008)) [@arnisoph](https://github.com/arnisoph)"
|
|
||||||
- kind: added
|
|
||||||
description: "Added support for webhook providers, as a sidecar. ([#4032](https://github.com/kubernetes-sigs/external-dns/pull/4032) [@mloiseleur](https://github.com/mloiseleur)"
|
|
||||||
- kind: added
|
|
||||||
description: "Added the option to configure ipFamilyPolicy and ipFamilies of external-dns Service. ([#4153](https://github.com/kubernetes-sigs/external-dns/pull/4153)) [@dongjiang1989](https://github.com/dongjiang1989)"
|
|
||||||
- kind: changed
|
|
||||||
description: "Avoid unnecessary pod restart on each helm chart version. ([#4103](https://github.com/kubernetes-sigs/external-dns/pull/4103)) [@jkroepke](https://github.com/jkroepke)"
|
|
||||||
- kind: changed
|
|
||||||
description: "Updated _ExternalDNS_ OCI image version to [v0.14.0](https://github.com/kubernetes-sigs/external-dns/releases/tag/v0.14.0). ([#4073](https://github.com/kubernetes-sigs/external-dns/pull/4073)) [@appkins](https://github.com/appkins)"
|
|
||||||
- kind: deprecated
|
|
||||||
description: "The `secretConfiguration` value has been deprecated in favour of creating secrets external to the Helm chart and configuring their use via the `extraVolumes` & `extraVolumeMounts` values. ([#4161](https://github.com/kubernetes-sigs/external-dns/pull/4161)) [@stevehipwell](https://github.com/stevehipwell)"
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# external-dns
|
# external-dns
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
|
ExternalDNS synchronizes exposed Kubernetes Services and Ingresses with DNS providers.
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ helm repo add external-dns https://kubernetes-sigs.github.io/external-dns/
|
|||||||
After you've installed the repo you can install the chart.
|
After you've installed the repo you can install the chart.
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
helm upgrade --install external-dns external-dns/external-dns --version 1.14.0
|
helm upgrade --install external-dns external-dns/external-dns --version 1.14.1
|
||||||
```
|
```
|
||||||
|
|
||||||
## Providers
|
## Providers
|
||||||
|
@ -150,7 +150,7 @@ spec:
|
|||||||
- name: http-webhook
|
- name: http-webhook
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
containerPort: 8888
|
containerPort: 8888
|
||||||
- name: http-webhook-metrics
|
- name: http-wh-metrics
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
containerPort: 8080
|
containerPort: 8080
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
|
Loading…
Reference in New Issue
Block a user