Tadas Sutkaitis | 4ace418 | 2023-02-27 04:31:52 +0200 | [diff] [blame] | 1 | # Copyright (c) 2023 VEXXHOST, Inc. |
Mohammed Naser | ab033e1 | 2022-03-13 21:07:28 -0400 | [diff] [blame] | 2 | # |
Tadas Sutkaitis | 4ace418 | 2023-02-27 04:31:52 +0200 | [diff] [blame] | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
| 14 | |
| 15 | containerd_bin_dir: /usr/bin |
| 16 | |
| 17 | containerd_version: 1.6.15 |
| 18 | containerd_archive_checksums: |
| 19 | arm64: |
| 20 | 1.6.15: d63e4d27c51e33cd10f8b5621c559f09ece8a65fec66d80551b36cac9e61a07d |
| 21 | amd64: |
| 22 | 1.6.15: 191bb4f6e4afc237efc5c85b5866b6fdfed731bde12cceaa6017a9c7f8aeda02 |
| 23 | |
| 24 | containerd_download_url: "https://github.com/containerd/containerd/releases/download/v{{ containerd_version }}/containerd-{{ containerd_version }}-{{ ansible_system | lower }}-{{ download_artifact_goarch }}.tar.gz" # noqa: yaml[line-length] |
| 25 | containerd_download_dest: "{{ containerd_download_unarchive_dest }}.tar.gz" |
| 26 | containerd_download_unarchive_dest: "{{ download_artifact_work_directory }}/containerd-{{ containerd_version }}-{{ ansible_system | lower }}-{{ download_artifact_goarch }}" # noqa: yaml[line-length] |
| 27 | containerd_archive_checksum: "{{ containerd_archive_checksums[download_artifact_goarch][containerd_version] }}" |
| 28 | |
Mohammed Naser | 336caf4 | 2022-03-11 17:56:45 -0500 | [diff] [blame] | 29 | containerd_pause_image: k8s.gcr.io/pause:3.5 |
Mohammed Naser | 71ebfe8 | 2022-12-28 05:28:16 +0000 | [diff] [blame] | 30 | containerd_insecure_registries: [] |
Tadas Sutkaitis | 4ace418 | 2023-02-27 04:31:52 +0200 | [diff] [blame] | 31 | |
| 32 | # NOTE(mnaser): This is to accomodate for the uninstallation of the old packages |
| 33 | # that shipped with the operating system |
| 34 | containerd_package_name: |
| 35 | - containerd |
| 36 | - containerd.io |
| 37 | |
| 38 | containerd_binaries: |
| 39 | - containerd |
| 40 | - containerd-shim |
| 41 | - containerd-shim-runc-v1 |
| 42 | - containerd-shim-runc-v2 |
| 43 | - containerd-stress |
| 44 | - ctr |
| 45 | |
| 46 | containerd_cfg_dir: /etc/containerd |
| 47 | containerd_storage_dir: /var/lib/containerd |
| 48 | containerd_state_dir: /run/containerd |
| 49 | |
| 50 | containerd_debug_level: "info" |
| 51 | containerd_max_container_log_line_size: -1 |
| 52 | |
| 53 | containerd_limit_proc_num: "infinity" |
| 54 | containerd_limit_core: "infinity" |
| 55 | containerd_limit_open_file_num: "infinity" |
| 56 | containerd_limit_mem_lock: "infinity" |