template.yaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ---
  2. kind: compose
  3. metadata:
  4. icon:
  5. provider: selfh
  6. id: influxdb
  7. name: Influxdb
  8. description: |-
  9. InfluxDB is a powerful, open-source time series database designed for high-performance handling of time-stamped data.
  10. It is commonly used for monitoring, analytics, and IoT applications.
  11. ## References
  12. * **Project:** https://www.influxdata.com/
  13. * **Documentation:** https://docs.influxdata.com/influxdb/
  14. * **GitHub:** https://github.com/influxdata/influxdb
  15. next_steps: |-
  16. Log in with your initial admin user:
  17. ```bash
  18. Username: {{ influxdb_init_username }}
  19. Password: {{ influxdb_init_password }}
  20. ```
  21. version: 2.8.0-alpine
  22. author: Christian Lempa
  23. date: '2025-12-11'
  24. tags:
  25. - traefik
  26. draft: true
  27. schema: "1.2"
  28. spec:
  29. ports:
  30. vars:
  31. ports_http:
  32. description: "Host port for HTTP API (8086)"
  33. type: int
  34. default: 8086
  35. influxdb:
  36. description: "InfluxDB initialization settings"
  37. required: true
  38. vars:
  39. influxdb_init_username:
  40. description: "Initial admin username"
  41. type: str
  42. default: "admin"
  43. required: true
  44. influxdb_init_password:
  45. description: "Initial admin password"
  46. type: str
  47. sensitive: true
  48. autogenerated: true
  49. required: true
  50. general:
  51. vars:
  52. influxdb_version:
  53. type: str
  54. description: Influxdb version
  55. default: latest