
In order to reduce divergance with ansible-lint rules, we apply auto-fixing of violations. In current patch we replace all kind of truthy variables with `true` or `false` values to align with recommendations along with alignment of used quotes. Change-Id: Ib52a0b06e5beda167de7dcf3b7fb42bc9818be62
43 lines
1.6 KiB
YAML
43 lines
1.6 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: "20.10.24-3"
|
|
_zun_containerd_package_version: "1.6.20-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"
|
|
|
|
# Common yum packages
|
|
zun_distro_packages:
|
|
- git
|
|
- systemd-devel
|
|
- tar
|
|
|
|
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
|
|
|
|
# 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
|