diff options
author | Kevin Sandi <ksandi@contractor.linuxfoundation.org> | 2021-09-30 13:58:53 -0600 |
---|---|---|
committer | Kevin Sandi <ksandi@contractor.linuxfoundation.org> | 2021-09-30 15:02:59 -0600 |
commit | 161af4f487d2cbe95c89e2d27b60635b9a534b71 (patch) | |
tree | 217d847cbdcd7ca8948b63b5f26c037cbb1e3827 /packer/vars | |
parent | 5b689b83b299ff604ff6dc0bfa725cee4fe93855 (diff) |
Chore: Upgrade common-packer to v0.9.3
Upgrade common-packer to latest version and fix unrelated
missing variable for ubuntu packer vars files which is blocking
the verify checks for this change
Signed-off-by: Kevin Sandi <ksandi@contractor.linuxfoundation.org>
Change-Id: I74f409974a5e025c6a1a1960a0befb75d01ff6f8
Diffstat (limited to 'packer/vars')
-rw-r--r-- | packer/vars/ubuntu-16.04-arm64.json | 3 | ||||
-rw-r--r-- | packer/vars/ubuntu-18.04-arm64.json | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/packer/vars/ubuntu-16.04-arm64.json b/packer/vars/ubuntu-16.04-arm64.json index ad161dc4f..d6dd65654 100644 --- a/packer/vars/ubuntu-16.04-arm64.json +++ b/packer/vars/ubuntu-16.04-arm64.json @@ -8,5 +8,6 @@ "source_ami_filter_owner": "099720109477", "ssh_user": "ubuntu", "vm_use_block_storage": "true", - "vm_image_disk_format": "raw" + "vm_image_disk_format": "raw", + "docker_source_image": "arm64v8/ubuntu:16.04" } diff --git a/packer/vars/ubuntu-18.04-arm64.json b/packer/vars/ubuntu-18.04-arm64.json index 38315f86b..cbb5dfd89 100644 --- a/packer/vars/ubuntu-18.04-arm64.json +++ b/packer/vars/ubuntu-18.04-arm64.json @@ -8,5 +8,6 @@ "source_ami_filter_owner": "099720109477", "ssh_user": "ubuntu", "vm_use_block_storage": "true", - "vm_image_disk_format": "raw" + "vm_image_disk_format": "raw", + "docker_source_image": "arm64v8/ubuntu:18.04" } |