From b4ee3a01d2df45e6f8f0bd1c3c9dc2273b954893 Mon Sep 17 00:00:00 2001 From: Benjamin Benoist Date: Thu, 25 May 2023 16:00:13 +0200 Subject: [PATCH] Bump base image to 22.04 (close #381) --- Packerfile.json | 6 +++--- Vagrantfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Packerfile.json b/Packerfile.json index 9ee10232..1bb37c2d 100644 --- a/Packerfile.json +++ b/Packerfile.json @@ -13,7 +13,7 @@ "filters": { "virtualization-type": "hvm", "architecture": "x86_64", - "name": "ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*", + "name": "ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server-*", "root-device-type": "ebs" }, "owners": ["099720109477"], @@ -21,7 +21,7 @@ }, "ssh_username": "ubuntu", "tags": { - "OS_Version": "Ubuntu-18.04", + "OS_Version": "Ubuntu-22.04", "Release": "{{user `aws_version`}}" }, "type": "amazon-ebs" @@ -32,7 +32,7 @@ "image_name": "{{user `gcp_image_name`}}", "machine_type": "{{user `gcp_machine_type`}}", "project_id": "snowplow-images", - "source_image_family": "ubuntu-1804-lts", + "source_image_family": "ubuntu-2204-lts", "ssh_username": "ubuntu", "zone": "us-central1-a" } diff --git a/Vagrantfile b/Vagrantfile index 9b725f99..985b5566 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,6 +1,6 @@ Vagrant.configure("2") do |config| - config.vm.box = "ubuntu/bionic64" + config.vm.box = "ubuntu/jammy64" config.vm.hostname = "snowplow-mini" config.ssh.forward_agent = true