-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add epoch to docker-ce and docker-ce-cli packages to ensure docker up… (
#8618) * Add epoch to docker-ce and docker-ce-cli packages to ensure docker upgrade * Split container-engine redhat vars to support legacy RHEL 7 version management * Support ansible_distribution_major_version when disvering vars with ansible_os_family
- Loading branch information
Showing
3 changed files
with
50 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
# containerd versions are only relevant for docker | ||
containerd_versioned_pkg: | ||
'latest': "{{ containerd_package }}" | ||
'1.3.7': "{{ containerd_package }}-1.3.7-3.1.el7" | ||
'1.3.9': "{{ containerd_package }}-1.3.9-3.1.el7" | ||
'1.4.3': "{{ containerd_package }}-1.4.3-3.2.el7" | ||
'1.4.4': "{{ containerd_package }}-1.4.4-3.1.el7" | ||
'1.4.6': "{{ containerd_package }}-1.4.6-3.1.el7" | ||
'1.4.9': "{{ containerd_package }}-1.4.9-3.1.el7" | ||
'1.4.12': "{{ containerd_package }}-1.4.12-3.1.el7" | ||
'stable': "{{ containerd_package }}-1.4.12-3.1.el7" | ||
'edge': "{{ containerd_package }}-1.4.12-3.1.el7" | ||
|
||
# https://docs.docker.com/engine/installation/linux/centos/#install-from-a-package | ||
# https://download.docker.com/linux/centos/<centos_version>>/x86_64/stable/Packages/ | ||
# or do 'yum --showduplicates list docker-engine' | ||
docker_versioned_pkg: | ||
'latest': docker-ce | ||
'18.09': docker-ce-18.09.9-3.el7 | ||
'19.03': docker-ce-19.03.15-3.el7 | ||
'20.10': docker-ce-20.10.11-3.el7 | ||
'stable': docker-ce-20.10.11-3.el7 | ||
'edge': docker-ce-20.10.11-3.el7 | ||
|
||
docker_cli_versioned_pkg: | ||
'latest': docker-ce-cli | ||
'18.09': docker-ce-cli-18.09.9-3.el7 | ||
'19.03': docker-ce-cli-19.03.15-3.el7 | ||
'20.10': docker-ce-cli-20.10.11-3.el7 | ||
'stable': docker-ce-cli-20.10.11-3.el7 | ||
'edge': docker-ce-cli-20.10.11-3.el7 | ||
|
||
docker_package_info: | ||
enablerepo: "docker-ce" | ||
pkgs: | ||
- "{{ containerd_versioned_pkg[docker_containerd_version | string] }}" | ||
- "{{ docker_cli_versioned_pkg[docker_cli_version | string] }}" | ||
- "{{ docker_versioned_pkg[docker_version | string] }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters