Skip to content

Commit

Permalink
Upgrade AWS VMs to Ubuntu 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadain committed Jul 2, 2024
1 parent 6095ed3 commit b76a565
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deployment/cfn/data_plane.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def get_recent_bastion_ami(self):
bastion_ami_id = self.get_input('BastionHostAMI')
except MKUnresolvableInputError:
filters = {'name':
'ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*',
'ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server-*',
'architecture': 'x86_64',
'block-device-mapping.volume-type': 'gp2',
'root-device-type': 'ebs',
Expand Down
2 changes: 1 addition & 1 deletion deployment/packer/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
def get_recent_ubuntu_ami(region, aws_profile):
"""Gets AMI ID for current release in region"""
filters = {
'name': 'ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*',
'name': 'ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server-*',
'architecture': 'x86_64',
'root-device-type': 'ebs',
'virtualization-type': 'hvm',
Expand Down

0 comments on commit b76a565

Please sign in to comment.