commited current state (new functions, may not work by now)
This commit is contained in:
44
playbooks/managed-mailcow/install-register-cmk-agent.yaml
Normal file
44
playbooks/managed-mailcow/install-register-cmk-agent.yaml
Normal file
@@ -0,0 +1,44 @@
|
||||
- name: "Register hosts against a remote site. Both for updates and TLS."
|
||||
hosts: all
|
||||
strategy: linear
|
||||
vars:
|
||||
# Basic server and authentication information.
|
||||
# You have to provide the distributed setup yourself.
|
||||
checkmk_agent_version: "2.3.0p14"
|
||||
checkmk_agent_edition: "cee"
|
||||
checkmk_agent_user: "automation"
|
||||
checkmk_agent_pass: "@JQVEOANOYTUKWGALS@E"
|
||||
# Here comes the part, where we get into remote registration
|
||||
checkmk_agent_server_protocol: https
|
||||
# The following should be set to the central site.
|
||||
# This where you configure the host objects.
|
||||
# Currently the agent package is also pulled from here.
|
||||
checkmk_agent_server: servercow.observer
|
||||
checkmk_agent_site: "scowmon"
|
||||
# The following should be pointed to the respective remote site.
|
||||
# This is where the registration will happen.
|
||||
checkmk_agent_registration_server: "{{ checkmk_agent_server }}"
|
||||
checkmk_agent_registration_site: "{{ checkmk_agent_site }}"
|
||||
# The folder might differ from your remote site name,
|
||||
# as it is the technical path. Check your configuration for this information.
|
||||
checkmk_agent_folder: "/managed_mailcows"
|
||||
# These options need to be enabled for all registrations to work.
|
||||
# You can however disable the one you do not want to perform.
|
||||
# But the host needs to be added and changes activated in any case.
|
||||
checkmk_agent_auto_activate: 'true'
|
||||
checkmk_agent_update: 'true'
|
||||
checkmk_agent_tls: 'true'
|
||||
checkmk_agent_add_host: 'true'
|
||||
# These are some generic agent options you might want to configure.
|
||||
checkmk_agent_discover: 'true'
|
||||
checkmk_agent_discover_max_parallel_tasks: 2
|
||||
checkmk_agent_force_install: 'true'
|
||||
checkmk_agent_delegate_api_calls: localhost
|
||||
checkmk_agent_delegate_download: "{{ inventory_hostname }}"
|
||||
checkmk_agent_host_name: "{{ inventory_hostname }}"
|
||||
checkmk_agent_host_folder: "{{ checkmk_agent_folder }}"
|
||||
checkmk_agent_host_ip: "{{ ansible_host }}"
|
||||
checkmk_agent_host_attributes:
|
||||
ipaddress: "{{ hostvars[inventory_hostname]['ansible_default_ipv4']['address'] }}"
|
||||
roles:
|
||||
- checkmk.general.agent
|
||||
Reference in New Issue
Block a user