| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- kind: compose
- metadata:
- icon:
- provider: selfh
- id: checkmk
- name: Checkmk
- description: 'Checkmk is a comprehensive IT monitoring solution that provides real-time
- insights
- into the health and performance of your infrastructure, applications, and services.
- It offers a wide range of monitoring capabilities, including server, network,
- cloud,
- and application monitoring, with an emphasis on ease of use and scalability.
- ## References
- * **Project:** https://checkmk.com/
- * **Documentation:** https://docs.checkmk.com/latest/en/
- * **GitHub:** https://github.com/tribe29/checkmk'
- next_steps: 'Log in with your initial admin user:
- ```bash
- Username: cmkadmin
- Password: {{ cmk_password }}
- ```'
- version: 2.4.0-latest
- author: Christian Lempa
- date: '2025-12-10'
- tags:
- - traefik
- schema: '1.2'
- spec:
- general:
- vars:
- service_name:
- default: checkmk
- container_timezone:
- type: str
- user_uid:
- type: int
- default: 1000
- user_gid:
- type: int
- default: 1000
- restart_policy:
- type: enum
- options:
- - unless-stopped
- - always
- - on-failure
- - 'no'
- default: unless-stopped
- required: true
- cmk_password:
- type: str
- description: CheckMK admin password
- sensitive: true
- autogenerated: true
- required: true
- cmk_site_id:
- type: str
- description: CheckMK site ID
- default: cmk
- required: true
- traefik:
- vars:
- traefik_host:
- default: checkmk
- traefik_network:
- default: traefik
- type: str
- required: true
- traefik_domain:
- default: home.arpa
- type: str
- required: true
- traefik_enabled:
- type: bool
- default: false
- description: Enable Traefik integration
- toggle: traefik_enabled
- title: Traefik
- description: Configure Traefik reverse proxy integration
- ports:
- vars:
- ports_http:
- default: 8000
- ports_agent:
- description: Agent port
- type: int
- default: 5000
- required: true
- ports_snmp:
- description: SNMP trap port
- type: int
- default: 162
- required: true
- traefik_tls:
- vars:
- traefik_tls_certresolver:
- type: str
- default: cloudflare
- required: true
- traefik_tls_enabled:
- type: bool
- default: false
- description: Enable Traefik TLS
- toggle: traefik_tls_enabled
- title: Traefik TLS
- description: Configure Traefik TLS/SSL certificates
- needs: traefik
|