ansible roles default files

This commit is contained in:
2026-02-02 14:03:39 -05:00
parent 26619f9c1a
commit 7755e65756
4 changed files with 9 additions and 11 deletions

8
Jenkinsfile vendored
View File

@@ -78,10 +78,6 @@ pipeline {
def apiTokenId = tokenIdAndSecret[0]
def apiTokenSecret = tokenIdAndSecret[1]
// Template IDs
def vmTemplateId = '133'
def lxcTemplateId = '109'
sh """
ansible-playbook playbooks/provision.yml \
-e "proxmox_api_user=${apiUser}" \
@@ -91,9 +87,7 @@ pipeline {
-e "target_node=${params.TARGET_NODE}" \
-e "vm_hostname=${params.HOSTNAME}" \
-e "cpu_cores=${params.CPU_CORES}" \
-e "ram_gb=${params.RAM_GB}" \
-e "vm_template_id=${vmTemplateId}" \
-e "lxc_template_id=${lxcTemplateId}"
-e "ram_gb=${params.RAM_GB}"
"""
}
}