Skip to content

Commit 73c549c

Browse files
KyriosGN0Bitnami Containersjotamartos
authoredMar 22, 2024··
[bitnami/external-dns] feat: add revisionHistoryLimit (#24525)
* [bitnami/external-dns] feat: add revisionHistoryLimit Signed-off-by: AvivGuiser <avivguiser@gmail.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * [bitnami/external-dns] bump chart and change default value Signed-off-by: AvivGuiser <avivguiser@gmail.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> --------- Signed-off-by: AvivGuiser <avivguiser@gmail.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Juan José Martos <jotamartos@gmail.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Juan José Martos <jotamartos@gmail.com>
1 parent 97a9db5 commit 73c549c

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed
 

‎bitnami/external-dns/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ maintainers:
2828
name: external-dns
2929
sources:
3030
- https://github.com/bitnami/charts/tree/main/bitnami/external-dns
31-
version: 7.0.2
31+
version: 7.1.0

‎bitnami/external-dns/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ helm install my-release \
128128
| `image.digest` | ExternalDNS image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
129129
| `image.pullPolicy` | ExternalDNS image pull policy | `IfNotPresent` |
130130
| `image.pullSecrets` | ExternalDNS image pull secrets | `[]` |
131+
| `revisionHistoryLimit` | sets number of replicaset to keep in k8s | `10` |
131132
| `automountServiceAccountToken` | Mount Service Account token in pod | `true` |
132133
| `hostAliases` | Deployment pod host aliases | `[]` |
133134
| `updateStrategy` | update strategy type | `{}` |
@@ -549,4 +550,4 @@ Unless required by applicable law or agreed to in writing, software
549550
distributed under the License is distributed on an "AS IS" BASIS,
550551
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
551552
See the License for the specific language governing permissions and
552-
limitations under the License.
553+
limitations under the License.

‎bitnami/external-dns/templates/dep-ds.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ metadata:
1818
{{- end }}
1919
spec:
2020
{{- if not .Values.useDaemonset }}
21+
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
2122
replicas: {{ coalesce .Values.replicas .Values.replicaCount }}
2223
{{- end }}
2324
{{- if .Values.updateStrategy }}

‎bitnami/external-dns/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ image:
8888
## - myRegistryKeySecretName
8989
##
9090
pullSecrets: []
91+
## @param revisionHistoryLimit sets number of replicaset to keep in k8s
92+
##
93+
revisionHistoryLimit: 10
9194
## @param automountServiceAccountToken Mount Service Account token in pod
9295
##
9396
automountServiceAccountToken: true

0 commit comments

Comments
 (0)
Please sign in to comment.