
See https://github.com/ansible/ansible/issues/73654 Change-Id: Ie427a6343fd888c9a1dd5c37a6285d33cd008b3e
48 lines
2.1 KiB
YAML
48 lines
2.1 KiB
YAML
---
|
|
# Copyright 2018, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
_zun_docker_package_version: "19.03.14-3"
|
|
_zun_containerd_package_version: "1.4.3-3.1"
|
|
_zun_kata_package_version: "1.11.3-1"
|
|
|
|
zun_docker_repo:
|
|
- name: "docker-ce"
|
|
description: Docker CE Stable
|
|
repo: "https://download.docker.com/linux/centos/{{ ansible_facts['distribution_major_version'] }}/$basearch/stable"
|
|
gpgkey: "https://download.docker.com/linux/centos/gpg"
|
|
- name: "kata"
|
|
description: Kata runtime
|
|
repo: "http://mirror.centos.org/centos/{{ ansible_facts['distribution_major_version'] }}/virt/$basearch/kata-containers"
|
|
gpgkey: "http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-Official"
|
|
|
|
# Common yum packages
|
|
zun_distro_packages:
|
|
- git
|
|
- systemd-devel
|
|
|
|
zun_distro_compute_packages:
|
|
- "containerd.io-{{ zun_containerd_package_version }}.el{{ ansible_facts['distribution_major_version'] }}.x86_64"
|
|
- "docker-ce-cli-{{ zun_docker_package_version }}.el{{ ansible_facts['distribution_major_version'] }}.x86_64"
|
|
- "docker-ce-{{ zun_docker_package_version }}.el{{ ansible_facts['distribution_major_version'] }}.x86_64"
|
|
- pciutils
|
|
- numactl
|
|
- device-mapper-multipath
|
|
- "kata-runtime-{{ zun_kata_package_version }}.el{{ ansible_facts['distribution_major_version'] }}.x86_64"
|
|
- "kata-shim-{{ zun_kata_package_version }}.el{{ ansible_facts['distribution_major_version'] }}.x86_64"
|
|
# NOTE: This package is unavailable from the centos mirrors
|
|
# - "kata-proxy-{{ zun_kata_package_version }}.el{{ ansible_facts['distribution_major_version'] }}.x86_64"
|
|
|
|
zun_docker_groupname: docker
|