values.yaml 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. image:
  2. repository: n8nio/n8n
  3. pullPolicy: IfNotPresent
  4. tag: 1.14.2
  5. resources:
  6. limits:
  7. cpu: 4000m
  8. memory: 8Gi
  9. n8nConfig:
  10. webHost: localhost
  11. additionalEnvs: []
  12. n8nRunAs:
  13. user: 568
  14. group: 568
  15. n8nNetwork:
  16. webPort: 30068
  17. certificateID:
  18. hostNetwork: false
  19. n8nStorage:
  20. data:
  21. type: ixVolume
  22. datasetName: data
  23. pgData:
  24. type: ixVolume
  25. hostPath: pgData
  26. pgBackup:
  27. type: ixVolume
  28. hostPath: pgBackup
  29. additionalStorages: []
  30. notes:
  31. custom: |
  32. ## Database
  33. You can connect to the database using the pgAdmin App from the catalog
  34. <details>
  35. <summary>Database Details</summary>
  36. - Database: `n8n`
  37. - Username: `n8n`
  38. - Password: `{{ .Values.n8nDbPass }}`
  39. - Host: `{{ .Values.n8nDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  40. - Port: `5432`
  41. </details>
  42. {{- $_ := unset .Values "n8nDbPass" }}
  43. {{- $_ := unset .Values "n8nDbHost" }}