Skip to content

Commit

Permalink
fix(Cluster):fixed docker
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Oct 9, 2023
1 parent 82b732f commit 83367c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 0 additions & 1 deletion cluster/master.site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
- vars/common_configuration.yml
roles:
- common
- geerlingguy.docker
- master
- role: slurm
tags:
Expand Down
10 changes: 10 additions & 0 deletions cluster/roles/common/tasks/001-apt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@
name: swift
state: present
when: mode == "openstack"

Check failure on line 98 in cluster/roles/common/tasks/001-apt.yml

View workflow job for this annotation

GitHub Actions / build

yaml[trailing-spaces]

Trailing spaces

Check failure on line 98 in cluster/roles/common/tasks/001-apt.yml

View workflow job for this annotation

GitHub Actions / build

yaml[trailing-spaces]

Trailing spaces
- name: Add Docker repository key
ansible.builtin.apt_key:
url: 'https://download.docker.com/linux/{{ ansible_distribution | lower }}/gpg'
state: present

- name: Add Docker repository
ansible.builtin.apt_repository:
repo: 'deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_lsb.codename}} stable'

Check failure on line 106 in cluster/roles/common/tasks/001-apt.yml

View workflow job for this annotation

GitHub Actions / build

jinja[spacing]

Jinja2 spacing could be improved: deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_lsb.codename}} stable -> deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_lsb.codename }} stable

Check failure on line 106 in cluster/roles/common/tasks/001-apt.yml

View workflow job for this annotation

GitHub Actions / build

jinja[spacing]

Jinja2 spacing could be improved: deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_lsb.codename}} stable -> deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_lsb.codename }} stable
state: present

- name: Add apt.bi.denbi.de repository key
ansible.builtin.apt_key:
Expand Down
1 change: 0 additions & 1 deletion cluster/worker.site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
- vars/common_configuration.yml
roles:
- common
- geerlingguy.docker
- worker
- role: slurm
tags:
Expand Down

0 comments on commit 83367c9

Please sign in to comment.