Welcome to mirror list, hosted at ThFree Co, Russian Federation.

main.yml « tasks « gitlab « roles « terraform « _support - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dce649759ba213a6665dba2fdc335e0ce478d78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- name: /etc/gitlab/gitlab.rb
  template:
    src: gitlab-gitlab.rb.j2
    dest: /etc/gitlab/gitlab.rb
  notify:
    - gitlab-ctl reconfigure
    - gitlab-ctl restart
    - wait gitlab
    - verify gitaly configuration
    - verify gitlab-shell

- name: Set Grafana password
  command:
    cmd: gitlab-ctl set-grafana-password
    stdin: "{{ grafana_password }}\n{{ grafana_password }}\n"