Skip to content

Commit

Permalink
Merge pull request #32 from nautobot/nn_sandbox_issues
Browse files Browse the repository at this point in the history
Fixing Revision Limit
  • Loading branch information
nniehoff authored Oct 13, 2021
2 parents b4b47be + 9d9b402 commit a005de0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/nautobot/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ name: "nautobot"
sources:
- "https://github.com/nautobot/nautobot"
- "https://github.com/nautobot/helm-charts"
version: "0.3.3"
version: "0.3.4"
2 changes: 1 addition & 1 deletion charts/nautobot/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nautobot

![Version: 0.3.3](https://img.shields.io/badge/Version-0.3.3-informational?style=flat-square) ![AppVersion: 1.1.4](https://img.shields.io/badge/AppVersion-1.1.4-informational?style=flat-square)
![Version: 0.3.4](https://img.shields.io/badge/Version-0.3.4-informational?style=flat-square) ![AppVersion: 1.1.4](https://img.shields.io/badge/AppVersion-1.1.4-informational?style=flat-square)

Nautobot is a Network Source of Truth and Network Automation Platform.

Expand Down
2 changes: 1 addition & 1 deletion charts/nautobot/templates/celery-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ metadata:
{{- end }}
spec:
replicas: {{ .Values.celeryWorker.replicaCount }}
revisionHistoryLimit: {{ .Values.celeryWorker.revisionHistoryLimit | int }}
{{- if .Values.celeryWorker.updateStrategy }}
strategy: {{- toYaml .Values.celeryWorker.updateStrategy | nindent 4 }}
{{- end }}
Expand All @@ -32,7 +33,6 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.celeryWorker.podLabels "context" $) | nindent 8 }}
{{- end }}
spec:
revisionHistoryLimit: {{ .Values.rqWorker.revisionHistoryLimit | int }}
{{- if .Values.serviceAccount.name }}
serviceAccountName: {{ template "nautobot.serviceAccountName" . }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/nautobot/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ metadata:
{{- end }}
spec:
replicas: {{ .Values.nautobot.replicaCount }}
revisionHistoryLimit: {{ .Values.nautobot.revisionHistoryLimit | int }}
{{- if .Values.nautobot.updateStrategy }}
strategy: {{- toYaml .Values.nautobot.updateStrategy | nindent 4 }}
{{- end }}
Expand All @@ -31,7 +32,6 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.nautobot.podLabels "context" $) | nindent 8 }}
{{- end }}
spec:
revisionHistoryLimit: {{ .Values.nautobot.revisionHistoryLimit | int }}
{{- if .Values.serviceAccount.name }}
serviceAccountName: {{ template "nautobot.serviceAccountName" . }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/nautobot/templates/rq-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ metadata:
{{- end }}
spec:
replicas: {{ .Values.rqWorker.replicaCount }}
revisionHistoryLimit: {{ .Values.rqWorker.revisionHistoryLimit | int }}
{{- if .Values.rqWorker.updateStrategy }}
strategy: {{- toYaml .Values.rqWorker.updateStrategy | nindent 4 }}
{{- end }}
Expand All @@ -32,7 +33,6 @@ spec:
{{- include "common.tplvalues.render" (dict "value" .Values.rqWorker.podLabels "context" $) | nindent 8 }}
{{- end }}
spec:
revisionHistoryLimit: {{ .Values.rqWorker.revisionHistoryLimit | int }}
{{- if .Values.serviceAccount.name }}
serviceAccountName: {{ template "nautobot.serviceAccountName" . }}
{{- end }}
Expand Down

0 comments on commit a005de0

Please sign in to comment.