Skip to content

Commit

Permalink
1. Update Ubuntu AMI and Docker image
Browse files Browse the repository at this point in the history
2. Updated documentation
3. Updated integration test
  • Loading branch information
tomuben committed Jun 13, 2024
1 parent f76cfee commit 5e302fd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions doc/user_guide/vm-edition/qemu.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
### Overview

1. Open the `VMDK` image
2. Select Ubuntu 20.04 LTS as template
2. Select Ubuntu 22.04 LTS as template
3. [Configure RAM](../system-requirements.md)
4. Start the VM

Expand All @@ -15,7 +15,7 @@
4. Choose: "Create virtual machine from file"<br />
![image info](./img/tutorial-screenshot-create-img.png)
5. Select the downloaded "VMDK" file from step 1
6. Select "Ubuntu 20.04 LTS" as Template, and click "Next"
6. Select "Ubuntu 22.04 LTS" as Template, and click "Next"
![image info](./img/tutorial-screenshot-select-template.png)
7. Select memory size (see section Hardware Requirements), then click "Create"
![image info](./img/tutorial-screenshot-select-resources.png)
Expand Down
4 changes: 2 additions & 2 deletions exasol/ds/sandbox/lib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

_default_config = {
"time_to_wait_for_polling": 10.0,
# Source AMI is set to Ubuntu 20.04. Owner id '099720109477' == 'Canonical'
# Source AMI is set to Ubuntu 22.04. Owner id '099720109477' == 'Canonical'
"source_ami_filters": {
"name": "ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*",
"name": "ubuntu/images/hvm-ssd/ubuntu-jammy-22.04-amd64-server-*",
"owner-id": "099720109477",
"architecture": "x86_64",
"state": "available"
Expand Down
2 changes: 1 addition & 1 deletion exasol/ds/sandbox/lib/dss_docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM ubuntu:20.04
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install --no-install-recommends --assume-yes python3 python3-pexpect
2 changes: 1 addition & 1 deletion test/integration/test_create_dss_docker_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def context(docker_socket_host: Path):

@pytest.fixture
def ubuntu_container_context(request, docker_auth):
spec = DockerImageSpec("ubuntu", "20.04")
spec = DockerImageSpec("ubuntu", "22.04")
pull_docker_image(spec, docker_auth)
def context(path_on_host: Path, path_in_container: str):
return container_context(
Expand Down

0 comments on commit 5e302fd

Please sign in to comment.