diff --git a/templates/n8n-deployment.yaml b/templates/n8n-deployment.yaml index 868be3f..4cd19d6 100644 --- a/templates/n8n-deployment.yaml +++ b/templates/n8n-deployment.yaml @@ -4,9 +4,6 @@ metadata: name: {{ include "n8n.fullname" . }} labels: {{- include "n8n.labels" . | nindent 4 }} - annotations: - checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }} - checksum/secret: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }} spec: replicas: 1 selector: diff --git a/templates/worker-deployment.yaml b/templates/worker-deployment.yaml index 7812d73..c8f8f45 100644 --- a/templates/worker-deployment.yaml +++ b/templates/worker-deployment.yaml @@ -4,9 +4,6 @@ metadata: name: {{ include "n8n-worker.fullname" . }} labels: {{- include "n8n-worker.labels" . | nindent 4 }} - annotations: - checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }} - checksum/secret: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }} spec: {{- if not .Values.worker.autoscaling.enabled }} replicas: {{ .Values.worker.replicaCount }}