ix_values.yaml 1021 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. image:
  2. repository: n8nio/n8n
  3. pullPolicy: IfNotPresent
  4. tag: 1.82.1
  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. ixVolumeConfig:
  23. datasetName: data
  24. pgData:
  25. type: ixVolume
  26. ixVolumeConfig:
  27. datasetName: pgData
  28. pgBackup:
  29. type: ixVolume
  30. ixVolumeConfig:
  31. datasetName: pgBackup
  32. additionalStorages: []
  33. notes:
  34. custom: |
  35. ## Database
  36. You can connect to the database using the pgAdmin App from the catalog
  37. <details>
  38. <summary>Database Details</summary>
  39. - Database: `n8n`
  40. - Username: `n8n`
  41. - Password: `{{ .Values.n8nDbPass }}`
  42. - Host: `{{ .Values.n8nDbHost }}.{{ .Release.Namespace }}.svc.cluster.local`
  43. - Port: `5432`
  44. </details>
  45. {{- $_ := unset .Values "n8nDbPass" }}
  46. {{- $_ := unset .Values "n8nDbHost" }}