Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
3497a9537e
|
|||
4e01f912ed
|
|||
bf6002c156
|
|||
ad9a7b248f
|
@ -3,7 +3,7 @@ name: n8n
|
|||||||
description: A Helm chart for Kubernetes
|
description: A Helm chart for Kubernetes
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.1
|
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
|
icon: https://github.com/n8n-io/n8n/raw/master/assets/n8n-logo.png
|
||||||
maintainers:
|
maintainers:
|
||||||
- email: me@grachevko.ru
|
- email: me@grachevko.ru
|
||||||
|
@ -3,7 +3,7 @@ kind: Deployment
|
|||||||
metadata:
|
metadata:
|
||||||
name: {{ include "n8n-webhook.fullname" . }}
|
name: {{ include "n8n-webhook.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "n8n.labels" . | nindent 4 }}
|
{{- include "n8n-webhook.labels" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
{{- if not .Values.webhook.autoscaling.enabled }}
|
{{- if not .Values.webhook.autoscaling.enabled }}
|
||||||
replicas: {{ .Values.webhook.replicaCount }}
|
replicas: {{ .Values.webhook.replicaCount }}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "n8n-webhook.fullname" . }}-webhook
|
name: {{ include "n8n-webhook.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "n8n-webhook.labels" . | nindent 4 }}
|
{{- include "n8n-webhook.labels" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
apiVersion: autoscaling/v2beta1
|
apiVersion: autoscaling/v2beta1
|
||||||
kind: HorizontalPodAutoscaler
|
kind: HorizontalPodAutoscaler
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "n8n.fullname" . }}-worker
|
name: {{ include "n8n-worker.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "n8n.labels" . | nindent 4 }}
|
{{- include "n8n-worker.labels" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
scaleTargetRef:
|
scaleTargetRef:
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
name: {{ include "n8n.fullname" . }}
|
name: {{ include "n8n-worker.fullname" . }}
|
||||||
minReplicas: {{ .Values.worker.autoscaling.minReplicas }}
|
minReplicas: {{ .Values.worker.autoscaling.minReplicas }}
|
||||||
maxReplicas: {{ .Values.worker.autoscaling.maxReplicas }}
|
maxReplicas: {{ .Values.worker.autoscaling.maxReplicas }}
|
||||||
metrics:
|
metrics:
|
||||||
|
Reference in New Issue
Block a user