template.yaml 905 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ---
  2. kind: compose
  3. metadata:
  4. name: Whoami
  5. description: >
  6. Whoami is a simple web application that displays information about the HTTP request it receives.
  7. It is often used for testing and debugging purposes to verify that a web server or reverse proxy is functioning correctly.
  8. Project: https://github.com/traefik/whoami
  9. Documentation: https://traefik.io/docs/
  10. GitHub: https://github.com/traefik/whoami
  11. version: 0.1.0
  12. author: Christian Lempa
  13. date: '2025-09-28'
  14. tags:
  15. - reverse-proxy
  16. - testing
  17. draft: true
  18. spec:
  19. ports:
  20. vars:
  21. ports_http:
  22. description: "Host port for HTTP (80)"
  23. type: int
  24. default: 80
  25. ports_https:
  26. description: "Host port for HTTPS (443)"
  27. type: int
  28. default: 443
  29. general:
  30. vars:
  31. whoami_version:
  32. type: str
  33. description: Whoami version
  34. default: latest