3 Commits

Author SHA1 Message Date
3497a9537e Bump n8n version up to 0.205.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-12-10 18:46:53 +03:00
4e01f912ed fix worker-hpa labels
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-11-16 17:38:06 +03:00
bf6002c156 fix webhook-deployment labels 2022-11-16 17:37:56 +03:00
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ name: n8n
description: A Helm chart for Kubernetes
type: application
version: 0.0.1
appVersion: 0.202.1
appVersion: 0.205.0
icon: https://github.com/n8n-io/n8n/raw/master/assets/n8n-logo.png
maintainers:
- email: me@grachevko.ru

View File

@ -3,7 +3,7 @@ kind: Deployment
metadata:
name: {{ include "n8n-webhook.fullname" . }}
labels:
{{- include "n8n.labels" . | nindent 4 }}
{{- include "n8n-webhook.labels" . | nindent 4 }}
spec:
{{- if not .Values.webhook.autoscaling.enabled }}
replicas: {{ .Values.webhook.replicaCount }}

View File

@ -2,14 +2,14 @@
apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "n8n.fullname" . }}-worker
name: {{ include "n8n-worker.fullname" . }}
labels:
{{- include "n8n.labels" . | nindent 4 }}
{{- include "n8n-worker.labels" . | nindent 4 }}
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: {{ include "n8n.fullname" . }}
name: {{ include "n8n-worker.fullname" . }}
minReplicas: {{ .Values.worker.autoscaling.minReplicas }}
maxReplicas: {{ .Values.worker.autoscaling.maxReplicas }}
metrics: