From 026ccddfb6cfcf7a1e2993e270a86462cca13c3c Mon Sep 17 00:00:00 2001 From: Eric Ball Date: Wed, 31 Jul 2019 13:50:06 -0700 Subject: [PATCH] Add custom Ubuntu 18.04 arm64 packer file The default file in common-packer calls for the flavor "lf-standard-1", which Akraino does not have in its cloud. By switching to an available flavor, this should fix our broken packer build. Change-Id: I213167072395b0985b914776068ad502aa3c8209 Signed-off-by: Eric Ball --- jjb/ci-management/ci-packer.yaml | 1 + packer/vars/ubuntu-18.04-arm64.json | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 packer/vars/ubuntu-18.04-arm64.json diff --git a/jjb/ci-management/ci-packer.yaml b/jjb/ci-management/ci-packer.yaml index 4cb815e..2f00039 100644 --- a/jjb/ci-management/ci-packer.yaml +++ b/jjb/ci-management/ci-packer.yaml @@ -34,6 +34,7 @@ project: ci-management project-name: ci-management build-node: centos7-builder-2c-1g + build-timeout: 90 templates: docker platforms: diff --git a/packer/vars/ubuntu-18.04-arm64.json b/packer/vars/ubuntu-18.04-arm64.json new file mode 100644 index 0000000..791bfb3 --- /dev/null +++ b/packer/vars/ubuntu-18.04-arm64.json @@ -0,0 +1,11 @@ +{ + "arch": "arm64", + "base_image": "Ubuntu 18.04 LTS (arm64) [2018-04-29]", + "cloud_user_data": "common-packer/provision/ubuntu-user_data.sh", + "distro": "Ubuntu 18.04", + "flavor": "v2-standard-1", + "source_ami_filter_name": "*ubuntu*16.04*", + "source_ami_filter_owner": "099720109477", + "ssh_user": "ubuntu", + "vm_use_block_storage": "true" +} -- 2.16.6