added vault nfs mount

This commit is contained in:
2026-03-04 08:42:31 -05:00
parent eae9696592
commit f60a1cd844
3 changed files with 42 additions and 6 deletions

10
Jenkinsfile vendored
View File

@@ -33,10 +33,15 @@ pipeline {
description: 'Install Docker and Docker Compose'
)
booleanParam(
name: 'INSTALL_NFS',
name: 'INSTALL_NFS_FOLDER',
defaultValue: false,
description: 'Install NFS and mount NFSFolder'
)
booleanParam(
name: 'INSTALL_NFS_VAULT',
defaultValue: false,
description: 'Install NFS and mount vault share'
)
}
environment {
@@ -200,7 +205,8 @@ all:
ansible-playbook playbooks/configure.yml \
-i temp_inventory.yml \
-e "install_docker=${params.INSTALL_DOCKER}" \
-e "install_nfs=${params.INSTALL_NFS}"
-e "install_nfs_folder=${params.INSTALL_NFS_FOLDER}" \
-e "install_nfs_vault=${params.INSTALL_NFS_VAULT}"
"""
}
}