summaryrefslogtreecommitdiff
path: root/roles/ick-artifact-store/tasks/main.yml
blob: 8463078cd0c3bed3193c44fec9c6a0fa12a15e1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
- name: install ick packages
  apt:
    name: "{{ item }}"
  with_items:
    - "{{ ick_prefix }}ick2"

- name: create config dirs
  file:
    state: directory
    path: "{{ item }}"
    owner: root
    group: root
    mode: 0755
  with_items:
    - /etc/ick

- name: install artifact store config
  template:
    src: artifact_store.yaml.j2
    dest: /etc/ick/artifact_store.yaml
    owner: root
    group: root
    mode: 0644

- name: enable and start units
  systemd:
    daemon_reload: yes
    name: "{{ item }}"
    state: restarted
    enabled: yes
  with_items:
    - artifact_store