Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update docker task #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 57 additions & 55 deletions tasks/setup-Debian.yml
Original file line number Diff line number Diff line change
@@ -1,62 +1,64 @@
---

- name: Ensure apt cache is up-to-date.
apt:
update_cache: yes

- name: Ensure old versions of Docker are not installed.
package:
name:
- docker
- docker-engine
state: absent

- name: Ensure dependencies are installed.
apt:
name:
- apt-transport-https
- ca-certificates
state: present

- name: Ensure additional dependencies are installed (on Ubuntu < 20.04 and any other systems).
apt:
name: gnupg2
state: present
when: ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('20.04', '<')

- name: Ensure additional dependencies are installed (on Ubuntu >= 20.04).
apt:
name: gnupg
state: present
when: ansible_distribution == 'Ubuntu' or ansible_distribution_version is version('20.04', '>=')

- name: Add Docker apt key.
apt_key:
url: "{{ docker_apt_gpg_key }}"
id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
state: present
register: add_repository_key
ignore_errors: "{{ docker_apt_ignore_key_error }}"

- name: Ensure curl is present (on older systems without SNI).
package: name=curl state=present
when: add_repository_key is failed

- name: Add Docker apt key (alternative for older systems without SNI).
shell: >
curl -sSL {{ docker_apt_gpg_key }} | sudo apt-key add -
args:
warn: false
when: add_repository_key is failed

- name: Add Docker repository.
apt_repository:
repo: "{{ docker_apt_repository }}"
state: present
update_cache: true
#- name: Ensure apt cache is up-to-date.
# apt:
# update_cache: yes
#
#- name: Ensure old versions of Docker are not installed.
# package:
# name:
# - docker
# - docker-engine
# state: absent
#
#- name: Ensure dependencies are installed.
# apt:
# name:
# - apt-transport-https
# - ca-certificates
# state: present
#
#- name: Ensure additional dependencies are installed (on Ubuntu < 20.04 and any other systems).
# apt:
# name: gnupg2
# state: present
# when: ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('20.04', '<')
#
#- name: Ensure additional dependencies are installed (on Ubuntu >= 20.04).
# apt:
# name: gnupg
# state: present
# when: ansible_distribution == 'Ubuntu' or ansible_distribution_version is version('20.04', '>=')
#
#- name: Add Docker apt key.
# apt_key:
# url: "{{ docker_apt_gpg_key }}"
# id: 9DC858229FC7DD38854AE2D88D81803C0EBFCD88
# state: present
# register: add_repository_key
# ignore_errors: "{{ docker_apt_ignore_key_error }}"
#
#- name: Ensure curl is present (on older systems without SNI).
# package: name=curl state=present
# when: add_repository_key is failed
#
#- name: Add Docker apt key (alternative for older systems without SNI).
# shell: >
# curl -sSL {{ docker_apt_gpg_key }} | sudo apt-key add -
# args:
# warn: false
# when: add_repository_key is failed
#
#- name: Add Docker repository.
# apt_repository:
# repo: "{{ docker_apt_repository }}"
# state: present
# update_cache: true

- name: Configure Amazon ECR Docker Credential Helper
# More details see: https://github.com/awslabs/amazon-ecr-credential-helper
tags:
- ecr-setup
block:
- name: Update ECR Docker Credential Helper
apt:
Expand All @@ -75,4 +77,4 @@
src: "{{ item.from }}"
dest: "{{ item.to }}"
with_items:
- {from: "docker/config.json", to: "/root/.docker/config.json"}
- {from: "docker/config.json", to: "/root/.docker/config.json"}