summaryrefslogtreecommitdiffstats
path: root/roles/ands_openshift/tasks/users.yml
blob: a692a24c21cf724bebdb319ba11f89e4cff8239d (plain)
1
2
3
4
5
6
7
8
---
- name: Copy htpasswd to /etc/origin/master
  copy: src="users/htpasswd" dest="/etc/origin/master/htpasswd" mode=0644 owner=root group=root force=yes backup=no
  when: "'masters' in group_names"

- include_tasks: users_resources.yml
  run_once: true
  delegate_to: "{{ groups.masters[0] }}"