diff --git a/charts/nautobot/Chart.yaml b/charts/nautobot/Chart.yaml
index 834d52ce..4e61185e 100644
--- a/charts/nautobot/Chart.yaml
+++ b/charts/nautobot/Chart.yaml
@@ -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"
diff --git a/charts/nautobot/README.md b/charts/nautobot/README.md
index 494513d2..e2f1e99a 100644
--- a/charts/nautobot/README.md
+++ b/charts/nautobot/README.md
@@ -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.
 
diff --git a/charts/nautobot/templates/celery-deployment.yaml b/charts/nautobot/templates/celery-deployment.yaml
index 11fdaa72..62bf9564 100644
--- a/charts/nautobot/templates/celery-deployment.yaml
+++ b/charts/nautobot/templates/celery-deployment.yaml
@@ -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 }}
@@ -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 }}
diff --git a/charts/nautobot/templates/deployment.yaml b/charts/nautobot/templates/deployment.yaml
index 40e15cbb..39aeef10 100644
--- a/charts/nautobot/templates/deployment.yaml
+++ b/charts/nautobot/templates/deployment.yaml
@@ -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 }}
@@ -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 }}
diff --git a/charts/nautobot/templates/rq-deployment.yaml b/charts/nautobot/templates/rq-deployment.yaml
index f04bdb4a..615a51d2 100644
--- a/charts/nautobot/templates/rq-deployment.yaml
+++ b/charts/nautobot/templates/rq-deployment.yaml
@@ -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 }}
@@ -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 }}