Skip to content
This repository was archived by the owner on Jun 5, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2021 Intel Corporation
---
golang_version: 1.16
golang_version: 1.17
golang_download_name: "go{{ golang_version }}.linux-amd64.tar.gz"
golang_download_url_base: "https://dl.google.com/go/"
golang_download_url: "{{ golang_download_url_base }}{{ golang_download_name }}"
golang_download_dest: "{{ project_dir }}/golang/{{ golang_download_name }}"
golang_download_checksum: "sha256:013a489ebb3e24ef3d915abe5b94c3286c070dfe0818d5bca8108f1d6e8440d2"
golang_download_checksum: "sha256:6bf89fc4f5ad763871cf7eac80a2d594492de7a818303283f1366a7f6a30372d"

golang_default_exports: [
"export GOROOT=/usr/local/go",
Expand Down
2 changes: 1 addition & 1 deletion roles/infrastructure/docker/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## URLs to docker images saved with `docker save <image>:<ver> | gzip > <image>.tar.gz` that are going to be preloaded after docker setup
docker_images: []

_docker_version: "20.10.12"
_docker_version: "20.10.13"
_docker_packages:
- "docker-ce-{{ _docker_version }}"
- "docker-ce-cli-{{ _docker_version }}"
Expand Down
4 changes: 2 additions & 2 deletions roles/infrastructure/docker/templates/daemon.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
},
"nproc": {
"Name": "nproc",
"Hard": 4096,
"Soft": 4096
"Hard": 40960,
"Soft": 40960
}
}
}
4 changes: 2 additions & 2 deletions roles/infrastructure/docker/vars/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
---

_docker_os_dependencies: "apt-transport-https,ca-certificates,curl,gnupg-agent,software-properties-common,moreutils,jq,auditd,python3-pip"
# version string specific for Ubuntu 20.04
_docker_package_version: "5:{{ _docker_version }}~3-0~ubuntu-focal"
# version string specific for Ubuntu 22.04
_docker_package_version: "5:{{ _docker_version }}~3-0~ubuntu-jammy"
_docker_packages:
- "docker-ce={{ _docker_package_version }}"
- "docker-ce-cli={{ _docker_package_version }}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
block:
- name: remove repo related files
apt_repository:
repo: deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu focal main
repo: deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu jammy main
state: absent
become: yes

Expand All @@ -28,7 +28,7 @@

- name: add SGX repository
apt_repository:
repo: deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu focal main
repo: deb [arch=amd64] https://download.01.org/intel-sgx/sgx_repo/ubuntu jammy main
become: yes
when: sgx_repo.stat.exists == false

Expand Down
3 changes: 1 addition & 2 deletions roles/security/isecl/common/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ install_dependencies:
- unzip
- make
- cabextract
- g++-8
- build-essential
- tpm-udev
- libtss2-esys0
- libtss2-esys-3.0.2-0
- init-system-helpers
- libgcrypt20-dev
- libtss2-dev
Expand Down