Skip to content

Commit

Permalink
add helm docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jpiper committed Sep 5, 2024
1 parent 1c7ec86 commit dd6e45a
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
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
- Fixed `provider.webhook.resources` behavior to correctly leverage resource limits ([#4560](https://github.com/kubernetes-sigs/external-dns/pull/4560))
- Fixed `provider.webhook.imagePullPolicy` behavior to correctly leverage pull policy ([#4643](https://github.com/kubernetes-sigs/external-dns/pull/4643)) _@kimsondrup_
- Add correct webhook metric port to `Service` and `ServiceMonitor` ([#4643](https://github.com/kubernetes-sigs/external-dns/pull/4643)) _@kimsondrup_
- Added support for `ignore-nodeports` argument @jpiper

## [v1.14.5] - 2023-06-10

Expand Down
5 changes: 4 additions & 1 deletion charts/external-dns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ For set up for a specific provider using the Helm chart, see the following links
external-dns supports running on a namespaced only scope, too.
If `namespaced=true` is defined, the helm chart will setup `Roles` and `RoleBindings` instead `ClusterRoles` and `ClusterRoleBindings`.

Note that you might also need to set `ignoreNodePorts=true` if you do not have access to the `Node` resource in the cluster and you are using the `Pod` or `Service` source.

### Limited Supported

Not all sources are supported in namespaced scope, since some sources depends on cluster-wide resources.
Expand All @@ -82,9 +84,9 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
| `skipper-routegroup` || |
| `gloo-proxy` || |
| `contour-httpproxy` || |
| `pod` || |
| `service` | ⚠️️ | NodePort not supported |
| `node` || |
| `pod` || |

## Values

Expand All @@ -105,6 +107,7 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
| extraVolumeMounts | list | `[]` | Extra [volume mounts](https://kubernetes.io/docs/concepts/storage/volumes/) for the `external-dns` container. |
| extraVolumes | list | `[]` | Extra [volumes](https://kubernetes.io/docs/concepts/storage/volumes/) for the `Pod`. |
| fullnameOverride | string | `nil` | Override the full name of the chart. |
| ignoreNodePorts | bool | `false` | |
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy for the `external-dns` container. |
| image.repository | string | `"registry.k8s.io/external-dns/external-dns"` | Image repository for the `external-dns` container. |
| image.tag | string | `nil` | Image tag for the `external-dns` container, this will default to `.Chart.AppVersion` if not set. |
Expand Down
4 changes: 3 additions & 1 deletion charts/external-dns/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ For set up for a specific provider using the Helm chart, see the following links
external-dns supports running on a namespaced only scope, too.
If `namespaced=true` is defined, the helm chart will setup `Roles` and `RoleBindings` instead `ClusterRoles` and `ClusterRoleBindings`.

Note that you might also need to set `ignoreNodePorts=true` if you do not have access to the `Node` resource in the cluster and you are using the `Pod` or `Service` source.

### Limited Supported

Not all sources are supported in namespaced scope, since some sources depends on cluster-wide resources.
Expand All @@ -77,9 +79,9 @@ If `namespaced` is set to `true`, please ensure that `sources` my only contains
| `skipper-routegroup` | ✅ | |
| `gloo-proxy` | ✅ | |
| `contour-httpproxy` | ✅ | |
| `pod` | ✅ | |
| `service` | ⚠️️ | NodePort not supported |
| `node` | ❌ | |
| `pod` | ❌ | |


{{ template "chart.requirementsSection" . }}
Expand Down
3 changes: 3 additions & 0 deletions charts/external-dns/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,9 @@ spec:
{{- if .Values.namespaced }}
- --namespace={{ .Release.Namespace }}
{{- end }}
{{- if .Values.ignoreNodePorts }}
- --ignore-nodeports=true
{{- end }}
{{- range .Values.domainFilters }}
- --domain-filter={{ . }}
{{- end }}
Expand Down
3 changes: 3 additions & 0 deletions charts/external-dns/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@ domainFilters: []
## -- Intentionally exclude domains from being managed.
excludeDomains: []

## -- Disable nodePort support (for environments where access to Node resources is forbidden)
ignoreNodePorts: false

provider:
# -- _ExternalDNS_ provider name; for the available providers and how to configure them see [README](https://github.com/kubernetes-sigs/external-dns/blob/master/charts/external-dns/README.md#providers).
name: aws
Expand Down

0 comments on commit dd6e45a

Please sign in to comment.