d93a661ae4
It's the only part of base that's important to run when we run a service. Run it in the service playbooks and get rid of the dependency on infra-prod-base. Continue running it in base so that new nodes are brought up with iptables in place. Bump the timeout for the mirror job, because the iptables addition seems to have just bumped it over the edge. Change-Id: I4608216f7a59cfa96d3bdb191edd9bc7bb9cca39
23 lines
658 B
YAML
23 lines
658 B
YAML
# This needs to happen in order. letsencrypt hosts export their TXT
|
|
# authentication records which is installed onto adns1, and then the
|
|
# hosts verify to issue/renew keys
|
|
- hosts: "certcheck:!disabled"
|
|
roles:
|
|
- install-certcheck
|
|
- hosts: "letsencrypt:!disabled"
|
|
name: "Deploy and renew certificates"
|
|
roles:
|
|
- letsencrypt-acme-sh-install
|
|
- letsencrypt-request-certs
|
|
- hosts: "adns:!disabled"
|
|
name: "Install txt records"
|
|
roles:
|
|
- letsencrypt-install-txt-record
|
|
- hosts: "letsencrypt:!disabled"
|
|
name: "Create certs"
|
|
roles:
|
|
- letsencrypt-create-certs
|
|
- hosts: "certcheck:!disabled"
|
|
roles:
|
|
- letsencrypt-config-certcheck
|