diff --git a/cluster/roles/common/tasks/001-apt.yml b/cluster/roles/common/tasks/001-apt.yml index 69cc344a..e1478cbe 100644 --- a/cluster/roles/common/tasks/001-apt.yml +++ b/cluster/roles/common/tasks/001-apt.yml @@ -57,21 +57,21 @@ update_cache: "yes" upgrade: "yes" -- name: Import deadsnake PPA for python3.8 +- name: Import deadsnake PPA for python3.9 ansible.builtin.apt_repository: repo: ppa:deadsnakes/ppa update_cache: true tags: always -- name: Install python3.8 +- name: Install python3.9 ansible.builtin.apt: state: present - name: python3.8 + name: python3.9 -- name: Install Python 3.8 and reset selection to auto +- name: Install Python 3.9 and reset selection to auto community.general.alternatives: name: python - path: /usr/bin/python3.8 + path: /usr/bin/python3.9 link: /usr/bin/python state: auto @@ -84,8 +84,8 @@ - libffi-dev - libssl-dev - software-properties-common - - python3.8-dev - - python3.8-venv + - python3.9-dev + - python3.9-venv - python3-pip - python3-setuptools state: present diff --git a/packer/cleanup_base_images.yml b/packer/cleanup_base_images.yml index f125d356..f6c8610f 100644 --- a/packer/cleanup_base_images.yml +++ b/packer/cleanup_base_images.yml @@ -24,6 +24,7 @@ -f json register: ubuntu_images_command + - name: Set image fact ansible.builtin.set_fact: ubuntu_images: "{{ ubuntu_images_command.stdout }}" diff --git a/packer/networks.json b/packer/networks.json index 160e67e7..f7929c13 100644 --- a/packer/networks.json +++ b/packer/networks.json @@ -2,5 +2,6 @@ "bielefeld_staging": "053f75d5-e7ea-4ccc-8519-3c896c27a2c2", "bielefeld_production": "70c155a3-d2df-4373-bc7a-81b9cbf4cd49", "giessen_staging": "2a365100-62e9-4d0e-8be0-911a3d8f18c5", - "giessen_production": "a9ba0f7a-2ef8-42ff-8197-096dbfb6171f" -} \ No newline at end of file + "giessen_production": "a9ba0f7a-2ef8-42ff-8197-096dbfb6171f", + "dsi_production": "c174e49a-3434-410e-9e83-6175f51658b0" +} diff --git a/vscode/vscode_metadata.yml b/vscode/vscode_metadata.yml index 768beb48..00a04165 100644 --- a/vscode/vscode_metadata.yml +++ b/vscode/vscode_metadata.yml @@ -18,4 +18,4 @@ wiki_link: "" logo_url: "https://cloud.denbi.de/static/images/vscode.png" info_url: "" information_for_display: - version: v4.17.0 + version: v4.17.1 diff --git a/vscode/vscode_vars_file.yml b/vscode/vscode_vars_file.yml index 72f20a79..3549a926 100644 --- a/vscode/vscode_vars_file.yml +++ b/vscode/vscode_vars_file.yml @@ -1,6 +1,6 @@ --- vscode_vars: INSTALL_SCRIPT_URL: https://code-server.dev/install.sh - VSCODE_VERSION: v4.17.0 + VSCODE_VERSION: v4.17.1 DEFAULT_USER: ubuntu PORT: 3000