dc827de23d
We duplicate the KDC settings over all our kerberos clients. Add clients to a "kerberos-client" group and set the variables in a group file. Change-Id: I25ed5f8c68065060205dfbb634c6558488003a38
36 lines
1003 B
YAML
36 lines
1003 B
YAML
# We exclude !disabled because we want to run the noop task on all
|
|
# of the hosts in the group, not just the active ones, because we're
|
|
# pulling their hostvars from the fact cache. They don't stop being
|
|
# zookeeper servers just because they are disabled.
|
|
- hosts: "zookeeper"
|
|
tasks:
|
|
- name: Use the host so we have access to its hostvars
|
|
debug:
|
|
msg: "This debug statement is to get us access to hostvars"
|
|
|
|
- hosts: "zuul:!disabled"
|
|
name: "Configure zuul servers"
|
|
roles:
|
|
- iptables
|
|
- install-docker
|
|
- zuul
|
|
|
|
- hosts: "zuul-merger:!disabled"
|
|
name: "Configure zuul merger"
|
|
roles:
|
|
- zuul-merger
|
|
|
|
- hosts: "zuul-executor:!disabled"
|
|
name: "Configure zuul executor"
|
|
roles:
|
|
- role: kerberos-client
|
|
- role: openafs-client
|
|
openafs_client_cache_size: "{{ afs_client_cache_size | default(10000000) }}" # 10GiB
|
|
- role: zuul-executor
|
|
|
|
- hosts: "zuul-scheduler:!disabled"
|
|
name: "Configure zuul scheduler"
|
|
roles:
|
|
- zuul-scheduler
|
|
- zuul-web
|