From 5663bb594adf15702d83e7a5b549f578e5ea0505 Mon Sep 17 00:00:00 2001 From: Konstantin Grachev Date: Tue, 28 Feb 2023 00:11:19 +0300 Subject: [PATCH] fix: remove checksum's from deployments --- templates/n8n-deployment.yaml | 3 --- templates/worker-deployment.yaml | 3 --- 2 files changed, 6 deletions(-) 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 }}