blob: 1b3525fc9efdefe795be3e48445a345d45103328 [file] [log] [blame]
Tadas Sutkaitis4ace4182023-02-27 04:31:52 +02001# Copyright (c) 2023 VEXXHOST, Inc.
Mohammed Naserab033e12022-03-13 21:07:28 -04002#
Tadas Sutkaitis4ace4182023-02-27 04:31:52 +02003# 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
15containerd_bin_dir: /usr/bin
16
17containerd_version: 1.6.15
18containerd_archive_checksums:
19 arm64:
20 1.6.15: d63e4d27c51e33cd10f8b5621c559f09ece8a65fec66d80551b36cac9e61a07d
21 amd64:
22 1.6.15: 191bb4f6e4afc237efc5c85b5866b6fdfed731bde12cceaa6017a9c7f8aeda02
23
24containerd_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]
25containerd_download_dest: "{{ containerd_download_unarchive_dest }}.tar.gz"
26containerd_download_unarchive_dest: "{{ download_artifact_work_directory }}/containerd-{{ containerd_version }}-{{ ansible_system | lower }}-{{ download_artifact_goarch }}" # noqa: yaml[line-length]
27containerd_archive_checksum: "{{ containerd_archive_checksums[download_artifact_goarch][containerd_version] }}"
28
Mohammed Naser336caf42022-03-11 17:56:45 -050029containerd_pause_image: k8s.gcr.io/pause:3.5
Mohammed Naser71ebfe82022-12-28 05:28:16 +000030containerd_insecure_registries: []
Tadas Sutkaitis4ace4182023-02-27 04:31:52 +020031
32# NOTE(mnaser): This is to accomodate for the uninstallation of the old packages
33# that shipped with the operating system
34containerd_package_name:
35 - containerd
36 - containerd.io
37
38containerd_binaries:
39 - containerd
40 - containerd-shim
41 - containerd-shim-runc-v1
42 - containerd-shim-runc-v2
43 - containerd-stress
44 - ctr
45
46containerd_cfg_dir: /etc/containerd
47containerd_storage_dir: /var/lib/containerd
48containerd_state_dir: /run/containerd
49
50containerd_debug_level: "info"
51containerd_max_container_log_line_size: -1
52
53containerd_limit_proc_num: "infinity"
54containerd_limit_core: "infinity"
55containerd_limit_open_file_num: "infinity"
56containerd_limit_mem_lock: "infinity"