zabbix agent install option

This commit is contained in:
2026-03-12 09:22:09 -04:00
parent b735a21a31
commit 4f5afd57fe
4 changed files with 60 additions and 0 deletions

6
Jenkinsfile vendored
View File

@@ -27,6 +27,11 @@ pipeline {
defaultValue: '2',
description: 'RAM in GB'
)
booleanParam(
name: 'INSTALL_ZABBIX',
defaultValue: false,
description: 'Install Zabbix agent2 and configure for zabbix.lan'
)
booleanParam(
name: 'INSTALL_GIT',
defaultValue: false,
@@ -209,6 +214,7 @@ all:
sh """
ansible-playbook playbooks/configure.yml \
-i temp_inventory.yml \
-e "install_zabbix=${params.INSTALL_ZABBIX}" \
-e "install_git=${params.INSTALL_GIT}" \
-e "install_docker=${params.INSTALL_DOCKER}" \
-e "install_nfs_folder=${params.INSTALL_NFS_FOLDER}" \