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

Dev #351

Merged
merged 6 commits into from
Oct 10, 2023
Merged

Dev #351

Show file tree
Hide file tree
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
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
2 changes: 1 addition & 1 deletion packer/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ roles:

- name: autoscaling
src: https://github.com/deNBI/autoscaling-ansible
version: 1.1.8
version: 1.1.9

- name: geerlingguy.swap

Expand Down