packer-builds

Packer Builds for LXC and Libvirt
git clone https://git.in0rdr.ch/packer-builds.git
Log | Files | Refs | Pull requests |Archive | README

commit 00daa076ad14d919913d9e8352bf125125430819
parent 4b41ed11732e9a2e102b9044d8f0e7fb9f4615e0
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Thu, 14 Aug 2025 08:05:15 +0200

feat: add Jenkinsfile

Diffstat:
AJenkinsfile | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile @@ -0,0 +1,11 @@ +@Library('in0rdr-jenkins-lib@master') _ + +def packerbuild = new PackerBuild(this) + +node('podman'){ + checkout scm + gitleaks() + packerbuild.execute('gatus-lxc.pkr.hcl', [ + gatus_tls_nfs_server: "server:/share" + ]) +}